mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:47:13 +08:00
40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# maintainer (x86_64): AlmAck <gluca86[at]google[dot]org>
|
|
|
|
pkgname=fakeroot
|
|
pkgver=1.20.2
|
|
pkgrel=1
|
|
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user."
|
|
arch=('x86_64')
|
|
license=('GPL')
|
|
url="http://packages.debian.org/fakeroot"
|
|
groups=('base-devel')
|
|
install="fakeroot.install"
|
|
depends=('glibc' 'filesystem' 'util-linux' 'sed' 'sh')
|
|
source=("http://ftp.debian.org/debian/pool/main/f/${pkgname}/${pkgname}_${pkgver}.orig.tar.bz2")
|
|
md5sums=('a4b4564a75024aa96c86e4d1017ac786')
|
|
|
|
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
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
|
|
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 README "${pkgdir}/usr/share/doc/${pkgname}/README"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|