This is a silly script now that a fancy aurbuild is out in the wild (on the AUR,

surprisingly enough, heh)
This commit is contained in:
Aaron Griffin 2007-01-30 06:31:18 +00:00
parent 0bc06918e4
commit 481524cb69
1 changed files with 0 additions and 25 deletions

View File

@ -1,25 +0,0 @@
#!/bin/bash
die() {
echo $*
exit 1
}
if [ "$1" == "" ]; then
echo "usage: aurbuild <package_name>"
echo
exit 1
fi
pkgname=$1
[ -d $pkgname ] && die "Directory '$pkgname' already exists"
[ -f $pkgname ] && die "File '$pkgname' already exists"
echo "Downloading $pkgname.tar.gz"
wget -q http://aur.archlinux.org/packages/$pkgname/$pkgname.tar.gz || die "Failed to fetch $1.pkg.tar.gz"
tar zxf $pkgname.tar.gz || die "Extraction failed"
rm -f $pkgname.tar.gz
cd $pkgname || die "Failed to cwd"
makepkg
# vim: set ts=2 sw=2 noet: