1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-02-12 11:21:53 +00:00
VirtScreen/Makefile

34 lines
556 B
Makefile
Raw Normal View History

# See https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project
# for python packaging reference.
.PHONY:
python-wheel:
python setup.py bdist_wheel --universal
python-install:
python setup.py install --user
pip-upload:
twine upload dist/*
.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: arch-clean
rm -rf build dist virtscreen.egg-info