mirror of
https://github.com/NinjaCheetah/NUSGet.git
synced 2025-04-25 07:01:01 -04:00
19 lines
421 B
Makefile
19 lines
421 B
Makefile
CC=python -m nuitka
|
|
ARCH_FLAGS?=
|
|
|
|
all:
|
|
python build_translations.py
|
|
$(CC) --show-progress --assume-yes-for-downloads NUSGet.py $(ARCH_FLAGS) -o NUSGet
|
|
|
|
install:
|
|
install -d /opt/NUSGet
|
|
install NUSGet /opt/NUSGet/
|
|
install ./packaging/icon.png /opt/NUSGet/NUSGet.png
|
|
install ./packaging/NUSGet.desktop /usr/share/applications
|
|
|
|
clean:
|
|
rm NUSGet
|
|
rm -rd NUSGet.build/
|
|
rm -rd NUSGet.dist/
|
|
rm -rd NUSGet.onefile-build/
|