summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2006-02-16 22:56:19 +0100
committerAurelien Foret <aurelien@archlinux.org>2006-02-16 22:56:19 +0100
commit1fadb8d250b97278aefbb46528d559eeff1eab77 (patch)
tree7e48e70f7cecd4de8e3545d3c746a12dfd65bcb9 /scripts
parentfbea96fd72939013a7d3440260f4be105cf5c819 (diff)
downloadpacman-1fadb8d250b97278aefbb46528d559eeff1eab77.tar.gz
pacman-1fadb8d250b97278aefbb46528d559eeff1eab77.tar.xz
*** empty log message ***
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/aurbuild24
1 files changed, 24 insertions, 0 deletions
diff --git a/scripts/aurbuild b/scripts/aurbuild
new file mode 100755
index 00000000..02346d8d
--- /dev/null
+++ b/scripts/aurbuild
@@ -0,0 +1,24 @@
+#!/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
+