mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
Sunday Sunday Sunday
This commit is contained in:
parent
8f39819f97
commit
aa52afc134
2 changed files with 24 additions and 0 deletions
|
@ -174,6 +174,8 @@ community - ogre-docs
|
|||
community - openarena
|
||||
community - openarena-data
|
||||
community - openlierox
|
||||
community - open-vm-tools
|
||||
community - open-vm-tools-modules
|
||||
community - opera
|
||||
community - performous
|
||||
community - performous-freesongs
|
||||
|
|
22
scripts/aur-syncer
Executable file
22
scripts/aur-syncer
Executable file
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
# BROKEN FOR NOW, I don't have enough time to finish it...
|
||||
#
|
||||
# This script deletes packages from the aur PKGBUILD folder we have in git,
|
||||
# redownloads all packages from a list, and extracts them to git again.
|
||||
#
|
||||
# This is to keep our [aur] repo up-to-date.
|
||||
#
|
||||
GITDIR=/build/plugapps
|
||||
AURTARBALLURL=http://aur.archlinux.org/packages/
|
||||
|
||||
# Only the following packages will be deleted and re-downloaded
|
||||
PKGLIST=yaourt open-iscsi
|
||||
|
||||
# Main loop
|
||||
cd $GITDIR/aur
|
||||
|
||||
rm -rf $PKGLIST
|
||||
|
||||
#wget $AURTARBALLURL/$PKGLIST/$PKGLIST.tar.gz
|
||||
|
||||
#tar xzf $PKGLIST.tar.gz
|
Loading…
Reference in a new issue