mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-14 18:12:23 +08:00
54 lines
1.4 KiB
Bash
54 lines
1.4 KiB
Bash
# Maintainer: 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.24
|
|
pkgrel=2
|
|
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')
|
|
provides=("${_pkgname}=${pkgver}-${pkgrel}")
|
|
conflicts=("${_pkgname}")
|
|
source=(http://ftp.debian.org/debian/pool/main/f/$_pkgname/${_pkgname}_${pkgver}.orig.tar.gz
|
|
silence-dlerror.patch)
|
|
md5sums=('964e5f438f1951e5a515dd54edd50fa6'
|
|
'5fba0b541b5af39d804265223fda525c')
|
|
|
|
prepare() {
|
|
cd $_pkgname-$pkgver
|
|
patch -p1 -i "$srcdir"/silence-dlerror.patch
|
|
}
|
|
|
|
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
|
|
}
|
|
|