2022-03-20 13:19:37 +01:00
|
|
|
#!/usr/bin/bash
|
|
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
|
|
# Website : https://pozol.eu
|
|
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
|
|
|
|
pkgname=fakeroot
|
2022-11-15 16:49:16 +01:00
|
|
|
pkgver=1.30.1
|
2022-03-20 13:19:37 +01:00
|
|
|
pkgrel=01
|
|
|
|
pkgdesc='Tool for simulating superuser privileges w/o systemd'
|
|
|
|
arch=('x86_64')
|
|
|
|
url='https://tracker.debian.org/pkg/fakeroot'
|
|
|
|
groups=( jobbot )
|
|
|
|
install=fakeroot.install
|
|
|
|
depends=('glibc' 'filesystem' 'sed' 'util-linux' 'sh')
|
|
|
|
makedepends=('po4a')
|
|
|
|
checkdepends=('sharutils')
|
|
|
|
source=("https://deb.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz")
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--libdir=/usr/lib/libfakeroot \
|
|
|
|
--disable-static \
|
|
|
|
--with-ipc=sysv
|
|
|
|
|
|
|
|
make
|
|
|
|
|
|
|
|
cd doc
|
|
|
|
po4a -k 0 --rm-backups --variable 'srcdir=../doc/' po4a/po4a.cfg
|
|
|
|
}
|
|
|
|
|
2022-11-15 16:49:16 +01:00
|
|
|
check() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make check
|
|
|
|
}
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $pkgname-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
|
|
|
|
install -dm0755 "$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 -Dm0644 README "$pkgdir/usr/share/doc/$pkgname/README"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-03 00:50:45 +02:00
|
|
|
#---- license gpg-key sha256sums ----
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
license=('GPL')
|
|
|
|
|
2022-11-15 16:49:16 +01:00
|
|
|
sha256sums=(32ebb1f421aca0db7141c32a8c104eb95d2b45c393058b9435fbf903dd2b6a75) # fakeroot_1.30.1.orig.tar.gz
|
2022-05-24 16:32:48 +02:00
|
|
|
|