diff options
author | pommicket <pommicket@gmail.com> | 2025-02-26 11:41:21 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-02-26 11:41:31 -0500 |
commit | 846715b9bc68962070d7db724bcb67a63ddc61cc (patch) | |
tree | f0a4cdd3ac83d41116dafb66763ffab53e6c2760 /Makefile | |
parent | efd4d46ce9a6db066e1065895f12c9567f31ad67 (diff) |
fix deb installer
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,7 @@ release/setup2: rm -rf release meson setup --buildtype=release release touch release/setup2 -camlet.deb: release control +camlet.deb: release control.sh rm -rf tmp mkdir -p tmp/camlet/usr/bin tmp/camlet/DEBIAN tmp/camlet/usr/share/applications tmp/camlet/usr/share/icons/hicolor/48x48/apps cp release/camlet tmp/camlet/usr/bin/ @@ -25,6 +25,7 @@ camlet.deb: release control cp camlet.png tmp/camlet/usr/share/icons/hicolor/48x48/apps sh control.sh > tmp/camlet/DEBIAN/control dpkg-deb --build tmp/camlet + mv tmp/camlet.deb . rm -rf tmp install: release @[ -w $(INSTALL_PREFIX) ] || { echo "You need permission to write to $(INSTALL_PREFIX). Try running with sudo/as root." && exit 1; } |