2011-05-23 11:05:33 +08:00
|
|
|
#
|
|
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
|
|
#
|
|
|
|
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
|
|
|
|
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
|
|
|
|
|
|
|
|
# include global config
|
|
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
2010-03-13 23:25:19 +08:00
|
|
|
|
|
|
|
pkgname=fakeroot
|
2011-05-23 11:05:33 +08:00
|
|
|
pkgver=1.15.1
|
|
|
|
pkgrel=1
|
2010-03-13 23:25:19 +08:00
|
|
|
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user"
|
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
license=('GPL')
|
|
|
|
url="http://packages.debian.org/fakeroot"
|
|
|
|
groups=('base-devel')
|
|
|
|
install=fakeroot.install
|
2011-05-23 11:05:33 +08:00
|
|
|
depends=('glibc' 'filesystem' 'util-linux' 'sed' 'sh')
|
2010-03-13 23:25:19 +08:00
|
|
|
options=('!libtool')
|
|
|
|
source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2)
|
2011-05-23 11:05:33 +08:00
|
|
|
md5sums=('248c408b1e06e776c5739871b49bd968')
|
2010-03-13 23:25:19 +08:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --libdir=/usr/lib/libfakeroot \
|
|
|
|
--disable-static --with-ipc=sysv
|
|
|
|
# --with-ipc=tcp is currently broken and no option on smp systems
|
|
|
|
make || return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd ${srcdir}/$pkgname-$pkgver
|
|
|
|
make DESTDIR=${pkgdir} install || return 1
|
|
|
|
|
|
|
|
install -dm755 ${pkgdir}/etc/ld.so.conf.d/
|
|
|
|
echo '/usr/lib/libfakeroot' > ${pkgdir}/etc/ld.so.conf.d/fakeroot.conf
|
|
|
|
|
|
|
|
# install README for sysv/tcp usage
|
|
|
|
install -Dm644 $srcdir/$pkgname-$pkgver/README $pkgdir/usr/share/doc/$pkgname/README
|
|
|
|
}
|