aur/upload.sh

15 lines
198 B
Bash
Raw Normal View History

2014-12-21 18:10:51 +00:00
#!/bin/sh
PKGDIR=${1:-.}
if [ -e "$PKGDIR/PKGBUILD" ] ; then
olddir="$PWD"
cd "$PKGDIR"
mkaurball -e
burp *.src.tar.*
cd "$olddir"
else
echo "ERROR: $PKGDIR does not contain a PKGBUILD"
fi