mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-02-12 11:21:53 +00:00
82 lines
2.1 KiB
Makefile
82 lines
2.1 KiB
Makefile
# See https://packaging.python.org/tutorials/distributing-packages/#packaging-your-project
|
|
# for python packaging reference.
|
|
|
|
.PHONY:
|
|
|
|
python-wheel:
|
|
/usr/bin/python3 setup.py bdist_wheel --universal
|
|
|
|
python-install:
|
|
/usr/bin/pip3 install . --user
|
|
|
|
python-uninstall:
|
|
/usr/bin/pip3 uninstall virtscreen
|
|
|
|
python-clean:
|
|
rm -rf build dist virtscreen.egg-info virtscreen/qml/*.qmlc
|
|
|
|
pip-upload: python-wheel
|
|
twine upload dist/*
|
|
|
|
.ONESHELL:
|
|
|
|
# For Debian packaging, https://www.debian.org/doc/manuals/debmake-doc/ch08.en.html#setup-py
|
|
deb-docker-build:
|
|
docker build -f package/debian/Dockerfile -t debmake .
|
|
|
|
deb-docker:
|
|
docker run --privileged --interactive --tty -v $(shell pwd)/package/debian:/app debmake /bin/bash
|
|
|
|
deb-docker-rm:
|
|
docker image rm -f debmake
|
|
|
|
deb-make:
|
|
docker run --privileged --interactive --tty --rm -v $(shell pwd)/package/debian:/app debmake /app/debmake.sh
|
|
|
|
deb-build: deb-clean deb-make
|
|
package/debian/copy_debian.sh
|
|
docker run --privileged --interactive --tty --rm -v $(shell pwd)/package/debian:/app debmake /app/debuild.sh
|
|
|
|
deb-contents:
|
|
docker run --privileged --interactive --tty --rm -v $(shell pwd)/package/debian:/app debmake /app/contents.sh
|
|
|
|
deb-env-make:
|
|
docker run --privileged --interactive --tty --rm -v $(shell pwd)/package/debian:/app debmake /app/debmake.sh virtualenv
|
|
|
|
deb-env-build: deb-clean deb-env-make
|
|
package/debian/copy_debian.sh virtualenv
|
|
docker run --privileged --interactive --tty --rm -v $(shell pwd)/package/debian:/app debmake /app/debuild.sh virtualenv
|
|
|
|
deb-clean:
|
|
rm -rf package/debian/build
|
|
|
|
# For AUR: https://wiki.archlinux.org/index.php/Python_package_guidelines
|
|
# and: https://wiki.archlinux.org/index.php/Creating_packages
|
|
arch-update:
|
|
cd package/archlinux
|
|
makepkg --printsrcinfo > .SRCINFO
|
|
|
|
arch-install: arch-update
|
|
cd package/archlinux
|
|
makepkg -si
|
|
|
|
arch-upload: arch-update
|
|
cd package/archlinux
|
|
git clone ssh://aur@aur.archlinux.org/virtscreen.git
|
|
cp PKGBUILD virtscreen
|
|
cp .SRCINFO virtscreen
|
|
cd virtscreen
|
|
git add --all
|
|
git commit
|
|
git push
|
|
cd ..
|
|
rm -rf virtscreen
|
|
|
|
arch-clean:
|
|
cd package/archlinux
|
|
rm -rf pkg src *.tar*
|
|
|
|
launch:
|
|
./launch.sh
|
|
|
|
clean: arch-clean deb-clean python-clean
|