mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
534 B
Bash
Executable file
21 lines
534 B
Bash
Executable file
#!/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/alarm
|
|
AURTARBALLURL=http://aur.archlinux.org/packages/
|
|
|
|
# Only the following packages will be deleted and re-downloaded
|
|
PKGLIST=yaourt open-iscsi
|
|
|
|
cd $GITDIR/aur
|
|
|
|
rm -rf $PKGLIST
|
|
|
|
#wget $AURTARBALLURL/$PKGLIST/$PKGLIST.tar.gz
|
|
|
|
#tar xzf $PKGLIST.tar.gz
|