diff options
author | root <root@rshg054.dnsready.net> | 2012-02-22 23:15:20 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-02-22 23:15:20 +0000 |
commit | 1d9fb21dff6df1679e536ab672edcbbdb4cf3a15 (patch) | |
tree | 803d7c2e3ac59d0ba8ac74c1b2a6dc6167937631 /community/9base/PKGBUILD | |
parent | 1f55cedf5ea357497d2a98eb2be78d8dab4a9665 (diff) |
Wed Feb 22 23:15:20 UTC 2012
Diffstat (limited to 'community/9base/PKGBUILD')
-rw-r--r-- | community/9base/PKGBUILD | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/community/9base/PKGBUILD b/community/9base/PKGBUILD index 06fd6be71..7b04adec0 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" } |