summaryrefslogtreecommitdiff
path: root/community/9base
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-22 23:09:46 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2012-02-22 23:09:46 -0300
commitf87cdf22eb712b5b1c118f768d4ff710fc839403 (patch)
tree023ff68dc2d6efdb25a8ab8b182a14b8d6a55889 /community/9base
parent290a8b0dd73569b6b2d9855be9638d3338c566e0 (diff)
parent1d9fb21dff6df1679e536ab672edcbbdb4cf3a15 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/arp-scan/PKGBUILD community/curlftpfs/PKGBUILD community/dtach/PKGBUILD community/espeakup/PKGBUILD community/g2sc/PKGBUILD community/judy/PKGBUILD community/python-fuse/PKGBUILD community/sisctrl/PKGBUILD extra/avahi/PKGBUILD extra/kdesdk/PKGBUILD extra/nasm/PKGBUILD multilib/lib32-p11-kit/PKGBUILD multilib/lib32-pixman/PKGBUILD testing/xf86-input-synaptics/PKGBUILD
Diffstat (limited to 'community/9base')
-rw-r--r--community/9base/PKGBUILD12
1 files changed, 6 insertions, 6 deletions
diff --git a/community/9base/PKGBUILD b/community/9base/PKGBUILD
index aa2dbb008..23422fcd4 100644
--- a/community/9base/PKGBUILD
+++ b/community/9base/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 19041 2010-06-19 13:08:44Z cbrannon $
+# $Id: PKGBUILD 65679 2012-02-21 21:15:24Z cbrannon $
# Maintainer: Chris Brannon <cmbrannon79@gmail.com>
# Contributor: Jeff Mickey <j@codemac.net>
# Contributor: Aaron, phrakture, Griffin <aaron@archlinux.org>
@@ -6,7 +6,7 @@
pkgname=9base
pkgver=6
-pkgrel=2
+pkgrel=3
pkgdesc="Port of various original Plan9 tools to unix"
url="http://tools.suckless.org/9base"
source=(http://dl.suckless.org/tools/$pkgname-$pkgver.tar.gz 9 plan9.sh)
@@ -31,14 +31,14 @@ build()
# when statically linked against the latest glibc.
sed -i '/-static/d' config.mk
- make || return 1
+ make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install || return 1
- install -m755 ../9 "$pkgdir/opt/plan9/bin/" || return 1
- install -D -m755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh" || return 1
+ make DESTDIR="$pkgdir" install
+ install -m755 ../9 "$pkgdir/opt/plan9/bin/"
+ install -D -m755 ../plan9.sh "$pkgdir/etc/profile.d/plan9.sh"
install -D -m644 LICENSE "$pkgdir/usr/share/licenses/9base/LICENSE"
}