mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
661 B
Bash
23 lines
661 B
Bash
# $Id: PKGBUILD 33076 2009-04-04 06:51:40Z allan $
|
|
# Maintainer : Allan McRae <allan@archlinux.org>
|
|
# Contributor: Aaron Griffin <aaron@archlinux.org>
|
|
|
|
pkgname=fakechroot
|
|
pkgver=2.9
|
|
pkgrel=1
|
|
pkgdesc="Gives a fake chroot environment"
|
|
arch=('i686' 'x86_64')
|
|
url="http://fakechroot.alioth.debian.org"
|
|
license=('LGPL')
|
|
options=('!libtool')
|
|
install=fakechroot.install
|
|
source=(http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.gz)
|
|
md5sums=('7b0048e50a6309acf0dda4e547735022')
|
|
|
|
build()
|
|
{
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --libdir=/usr/lib/libfakeroot
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|