From 6c8394f59421ce0a7876a47437fe214697775bc6 Mon Sep 17 00:00:00 2001 From: Bumsik Kim Date: Mon, 21 May 2018 15:09:42 -0400 Subject: [PATCH] AUR: updated to 0.1.2 --- Makefile | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ac8a759..ab718e4 100644 --- a/Makefile +++ b/Makefile @@ -9,11 +9,14 @@ python-wheel: python-install: python setup.py install --user -pip-upload: +pip-upload: python-wheel twine upload dist/* .ONESHELL: + +# 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 @@ -22,6 +25,18 @@ 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*