mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
28 lines
1 KiB
Bash
28 lines
1 KiB
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
|
# Contributor: Frop Doe <mrmr@rizla.org>
|
|
# Contributor: Guillermo A. Amaral <me@guillermoamaral.com> (thewonka)
|
|
# Mainteiner: Guillermo A. Amaral <me@guillermoamaral.com> (thewonka)
|
|
|
|
pkgname=chrootuid
|
|
pkgver=1.3
|
|
pkgrel=3
|
|
arch=(i686 x86_64)
|
|
pkgdesc="Runs a command in a restricted environment."
|
|
url="ftp://ftp.porcupine.org/pub/security/index.html"
|
|
license=("BSD")
|
|
depends=(glibc)
|
|
source=(ftp://ftp.porcupine.org/pub/security/$pkgname$pkgver.tar.gz
|
|
ftp://ftp.porcupine.org/pub/security/chrootuid_license)
|
|
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
|
|
}
|