3 Commits

Author SHA1 Message Date
Leart Dukaj
2b46edf401 Update makefile to fix installs on Linux, add uninstall option (#42)
Co-authored-by: Leart Dukaj <leartdukaj@tutanota.de>
2026-02-09 12:34:51 -05:00
92ee96fb1b Merge branch 'main' of https://github.com/NinjaCheetah/NUSGet 2026-02-02 22:39:26 -05:00
8bd72c5899 Create FUNDING.yml 2026-02-02 22:38:50 -05:00
2 changed files with 7 additions and 1 deletions

2
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1,2 @@
github: ninjacheetah
ko_fi: ninjacheetah

View File

@@ -6,13 +6,17 @@ all:
$(CC) --show-progress --assume-yes-for-downloads NUSGet.py $(ARCH_FLAGS) -o NUSGet
install:
rm -rd /opt/NUSGet/
rm -rf /opt/NUSGet/
install -d /opt/NUSGet
cp -r ./NUSGet.dist/* /opt/NUSGet/
chmod 755 /opt/NUSGet/
install ./packaging/icon.png /opt/NUSGet/NUSGet.png
install ./packaging/NUSGet.desktop /usr/share/applications
uninstall:
rm -rf /opt/NUSGet
rm /usr/share/applications/NUSGet.desktop
clean:
rm NUSGet
rm -rd NUSGet.build/