mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:07:15 +08:00
42 lines
1.3 KiB
Bash
42 lines
1.3 KiB
Bash
#
|
|
# 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
|
|
|
|
pkgname=fakeroot
|
|
pkgver=1.15.1
|
|
pkgrel=1
|
|
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
|
|
depends=('glibc' 'filesystem' 'util-linux' 'sed' 'sh')
|
|
options=('!libtool')
|
|
source=(http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2)
|
|
md5sums=('248c408b1e06e776c5739871b49bd968')
|
|
|
|
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
|
|
}
|