PurpleI2P / i2pd-qt

i2pd with Qt based GUI
BSD 3-Clause "New" or "Revised" License
56 stars 10 forks source link

[FR] Add `make install` support for `linux` platform #56

Closed PRESFIL closed 2 years ago

PRESFIL commented 2 years ago

At the moment, qmake generates a Makefile with an empty instruction for install: due to the fact that INSTALLS and TARGET.{path,files} were empty. Now Makefile can perform make install / make uninstall and install/delete the executable file, desktop file and icons.

This is necessary to build my PKGBUILD for ArchLinux, but it may be useful for those who do not want to use Flatpak.

This PR implements this feature only for linux platform, but it can be extended to other unix platforms if desired.

r4sas commented 2 years ago

Thanks!

PRESFIL commented 2 years ago

Thank you!