1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-03-09 15:40:18 +00:00

Created AUR package and a desktop entry

This commit is contained in:
Bumsik Kim 2018-05-21 04:12:30 -04:00
parent 99936f6e00
commit 570a58243d
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6
4 changed files with 91 additions and 6 deletions

View file

@ -1,19 +1,33 @@
# See https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project
# for python packaging reference.
.PHONY: wheel install clean
.PHONY:
wheel:
python-wheel:
python setup.py bdist_wheel --universal
upload:
python-install:
python setup.py install --user
pip-upload:
twine upload dist/*
install:
python setup.py install --user
.ONESHELL:
arch-update:
cd package/archlinux
makepkg --printsrcinfo > .SRCINFO
arch-install: arch-update
cd package/archlinux
makepkg -si
arch-clean:
cd package/archlinux
rm -rf pkg src *.tar*
launch:
./launch.sh
clean:
clean: arch-clean
rm -rf build dist virtscreen.egg-info