mirror of
https://github.com/arcan1s/pkgbuild.git
synced 2025-04-24 15:37:18 +00:00
My Arch AUR PKGBUILD's
1pass-hg@7ad21f858f | ||
appset-qt@61737f0588 | ||
compass-icon-theme@200259fe0d | ||
compass-icon-theme-kde@be4fcaf1e3 | ||
discover@5401eea2e8 | ||
eric4@1e6561ec77 | ||
fingerprint-gui@bfe06c2959 | ||
food_gui@af87745866 | ||
ghemical-mpqc@dfb0a15322 | ||
git-etc@167185b5ea | ||
gtk-kde4@5806c4124b | ||
istodo@5d33eadcc4 | ||
kate-latex-plugin@f3f1bd3378 | ||
katecpp-helper-plugin@5da85503ad | ||
kdeicons-nouvekdegray@f798669174 | ||
kdeplasma-applets-awesome-widgets-git@cfaff38ac3 | ||
kdeplasma-applets-oblikuestrategies@bcba459750 | ||
kdeplasma-applets-plasmacon@fa21411585 | ||
kdeplasma-applets-stdin-svn@0448af8ee8 | ||
kdeplasma-applets-usu-notifications@2414bba008 | ||
kdeplasma-wallpapers-dayandnight@178e6ebc32 | ||
kdm-theme-modernarchlinux@bddff19d1f | ||
kwin-scripts-tiling@46169a08bb | ||
lib32-libarchive@43b8773028 | ||
libghemical-mpqc@7777b120ea | ||
mpqc-shared@471c08e417 | ||
netctl-gui@ebd8017b10 | ||
netctl-gui-qt4@9875269faf | ||
nitrux-icon-theme@21efebfa41 | ||
nitrux-icon-theme-kde@3e9417169f | ||
plasma5-applet-awesome-widgets@8064f00af7 | ||
plasma-theme-diamond@ebe39800bf | ||
python2-cyrano@012d24658e | ||
qmmp-qsmmp-git@4ece2c71b9 | ||
qscite@cf7ca49284 | ||
scidavis@df37cf0b12 | ||
square-beam-icon-theme@ca86558301 | ||
tepsonic-git@b2c9e0ee7b | ||
voxforge-am-julius-nightly@cd052404c7 | ||
yarock-qt5@5fbdbb4357 | ||
.gitignore | ||
.gitmodules | ||
README.md |
pkgbuild
My Arch AUR PKGBUILD's. At the moment it is only for private use since any package points to git repository by using SSH protocol (thus it requires my private key).
Clone or update submodule statuses
# clone if no repository cloned
git clone https://github.com/arcan1s/pkgbuild.git
cd pkgbuild
git submodule update --init
Add package
cd pkgbuild
git submodule add ssh+git://aur@aur.archlinux.org/$pkgbase.git/
# some changes here if required (see package update below)
git add $pkgbase
git commit -m 'add $pkgbase'
git push
Update package
cd pkgbuild/$pkgbase
vim PKGBUILD
# some changes here
mkscrinfo
git add PKGBUILD .SRCINFO # newly created files should be added too
git commit -m 'bump $pkgbase to $pkgver-$pkgrel'
git push
# now update repository
cd ..
git add $pkgbase
git commit -m 'bump $pkgbase to $pkgver-$pkgrel'
git push
Force update submodules to AUR state
cd pkgbuild
git submodule foreach git pull origin master
git add -A . # or smth like this
git commit -m 'bump packages to aur versions'
git push