diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-21 11:26:12 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2012-02-21 11:26:12 -0300 |
commit | c0bcbcf4015ba2388cb0f0bd418e5242f9613b43 (patch) | |
tree | 8e4f525a74e1ec4d373256b380f7d49305ed5d00 /community/chrootuid/PKGBUILD | |
parent | a05bf04c686ff44fc6c12fbe774d65032b74c55d (diff) | |
parent | 11484c032f8c236b2044e715a9a3b28e33f65598 (diff) |
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts:
community/6tunnel/PKGBUILD
community/chrootuid/PKGBUILD
community/cpulimit/PKGBUILD
community/cutter/PKGBUILD
community/darkhttpd/PKGBUILD
community/darkstat/PKGBUILD
community/datemath/PKGBUILD
community/delegate/PKGBUILD
community/dfm/PKGBUILD
community/freedroid/PKGBUILD
community/parano/PKGBUILD
community/pyvorbis/PKGBUILD
community/scrotwm/PKGBUILD
extra/antlr2/PKGBUILD
extra/live-media/PKGBUILD
extra/mono-zeroconf/PKGBUILD
extra/vlc/PKGBUILD
Diffstat (limited to 'community/chrootuid/PKGBUILD')
-rw-r--r-- | community/chrootuid/PKGBUILD | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/community/chrootuid/PKGBUILD b/community/chrootuid/PKGBUILD index 0f33c5971..89448b5c9 100644 --- a/community/chrootuid/PKGBUILD +++ b/community/chrootuid/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 17501 2010-05-24 14:12:22Z spupykin $ +# $Id: PKGBUILD 65090 2012-02-20 03:36:03Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Frop Doe <mrmr@rizla.org> # Contributor: Guillermo A. Amaral <me@guillermoamaral.com> (thewonka) @@ -6,7 +6,7 @@ pkgname=chrootuid pkgver=1.3 -pkgrel=4 +pkgrel=5 arch=(i686 x86_64 'mips64el') pkgdesc="Runs a command in a restricted environment." url="ftp://ftp.porcupine.org/pub/security/index.html" @@ -18,11 +18,9 @@ md5sums=('15510abadf5de189e1c22a1544dc926a' '11383ad1d66445640f1dec3478a2b53f') build() { - cd $startdir/src/$pkgname$pkgver - - make || return 1 - - install -D -m755 $srcdir/$pkgname$pkgver/chrootuid $startdir/pkg/usr/sbin/chrootuid && \ - install -D -m644 $srcdir/$pkgname$pkgver/chrootuid.1 $startdir/pkg/usr/share/man/man1/chrootuid.1 && \ - install -D -m644 $srcdir/chrootuid_license $startdir/pkg/usr/share/licenses/$pkgname/license + cd $srcdir/$pkgname$pkgver + make + install -D -m755 $srcdir/$pkgname$pkgver/chrootuid $pkgdir/usr/sbin/chrootuid + install -D -m644 $srcdir/$pkgname$pkgver/chrootuid.1 $pkgdir/usr/share/man/man1/chrootuid.1 + install -D -m644 $srcdir/chrootuid_license $pkgdir/usr/share/licenses/$pkgname/license } |