mirror of
https://github.com/kbumsik/VirtScreen.git
synced 2025-03-09 15:40:18 +00:00
AUR: updated to 0.1.2
This commit is contained in:
parent
a88525fdd8
commit
6c8394f594
1 changed files with 16 additions and 1 deletions
17
Makefile
17
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*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue