From 3e3f30a212748d79dabec83d2182132741e0d898 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Thu, 21 Dec 2006 20:50:24 +0000 Subject: =?UTF-8?q?J=FCrgen=20H=F6tzel=20=20*=20fix?= =?UTF-8?q?=20in=5Farray=20variables=20and=20usage=20*=20correct=20the=20f?= =?UTF-8?q?inal=20compression=20-=20'filelist'=20was=20unused?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/makepkg | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'scripts') diff --git a/scripts/makepkg b/scripts/makepkg index 7d4e35a5..e9c53d17 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -120,7 +120,7 @@ check_option() { } in_array() { - needle=$1 + local needle=$1 shift 1 [ -z "$1" ] && return 1 for i in $*; do @@ -441,7 +441,7 @@ if [ $(echo $pkgrel | grep '-') ]; then error "pkgrel is not allowed to contain hyphens." exit 1 fi -if [ ! in_array $CARCH ${arch[@]} ]; then +if ! in_array $CARCH ${arch[@]}; then error "$pkgname is not available for the '$CARCH' architecture." plain "Note that many packages may need a line added to their $BUILDSCRIPT" plain "such as arch=('$CARCH')." @@ -884,22 +884,19 @@ tar cvf /dev/null * | sort >.FILELIST # tar it up msg "Compressing package..." cd $startdir/pkg -if [ -f $startdir/pkg/.INSTALL ]; then - cmd="tar czvf $PKGDEST/$pkgname-$pkgver-$pkgrel-${CARCH}.${PKGEXT} .PKGINFO .FILELIST .INSTALL *" -else - cmd="tar czvf $PKGDEST/$pkgname-$pkgver-$pkgrel-${CARCH}.${PKGEXT} .PKGINFO .FILELIST *" -fi -$cmd | sort >../filelist -if [ ${PIPESTATUS[0]} -gt 0 ]; then - error "Failed to create package file." - exit ${PIPESTATUS[0]} +pkg_file="$PKGDEST/$pkgname-$pkgver-$pkgrel-${CARCH}.${PKGEXT}" +comp_files=".PKGINFO .FILELIST ${install:+.INSTALL}" + +if ! tar czf $pkg_file $comp_files *; then + error "Failed to create package file." + exit 1 fi cd $startdir if [ "$CLEANUP" = "1" ]; then msg "Cleaning up..." - rm -rf src pkg filelist + rm -rf src pkg rm -rf ${pkgname}-${pkgver}-${pkgrel}-${CARCH}.log* fi -- cgit v1.2.3