updated on Tue Jan 17 20:03:13 UTC 2012
[aur-mirror.git] / fakeroot-ng / PKGBUILD
blob93c77aacf9cb6f0d9a7191827f4757f53e6077b5
1 # Maintainer: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
3 pkgname=fakeroot-ng
4 pkgver=0.17
5 pkgrel=1
6 pkgdesc="Runs a program while fooling it into thinking it is running with root privileges (with ptrace syscall)"
7 arch=('i686' 'x86_64')
8 url="http://sourceforge.net/projects/fakerootng"
9 license=('GPL2')
10 depends=('gcc-libs')
11 source=(http://downloads.sourceforge.net/sourceforge/fakerootng/$pkgname-$pkgver.tar.gz)
12 md5sums=('972b022a10cdeb0f61052982002f42b4')
14 build() {
15   cd $srcdir/$pkgname-$pkgver
17   ./configure --prefix=/usr
18   make || return 1
19   make DESTDIR=$pkgdir install
22 # vim:set ts=2 sw=2 et: