pkgbuilds/fakeroot-tcp/PKGBUILD

49 lines
1.3 KiB
Bash

# Maintainer: w0rty <mawo97 at gmail.com>
# Contributor: 4679 <admin@libnull.com>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Allan McRae <allan@archlinux.org>
# Contributor: Jochem Kossen <j.kossen@home.nl>
pkgname=fakeroot-tcp
_pkgname=fakeroot
pkgver=1.25.3
pkgrel=1
pkgdesc='Tool for simulating superuser privileges,with tcp ipc'
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
license=('GPL')
url="http://packages.debian.org/fakeroot"
install=fakeroot.install
depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
makedepends=('po4a' 'automake' 'autoconf')
provides=("${_pkgname}=${pkgver}-${pkgrel}")
conflicts=("${_pkgname}")
source=(http://ftp.debian.org/debian/pool/main/f/$_pkgname/${_pkgname}_${pkgver}.orig.tar.gz)
md5sums=('f6104ef6960c962377ef062bf222a1d2')
build() {
cd $_pkgname-$pkgver
./bootstrap
./configure --prefix=/usr \
--libdir=/usr/lib/libfakeroot \
--disable-static \
--with-ipc=tcp
make
cd doc
/usr/bin/vendor_perl/po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg
}
package() {
cd $_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
}