61 lines
1.5 KiB
Bash
61 lines
1.5 KiB
Bash
#!/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
|
|
pkgver=1.33
|
|
pkgrel=02
|
|
pkgdesc='Tool for simulating superuser privileges w/o systemd'
|
|
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
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -dm0755 "$pkgdir/usr/lib/ld.so.conf.d/"
|
|
echo '/usr/lib/libfakeroot' > "$pkgdir/usr/lib/ld.so.conf.d/fakeroot.conf"
|
|
|
|
# install README for sysv/tcp usage
|
|
install -Dm0644 README "$pkgdir/usr/share/doc/$pkgname/README"
|
|
|
|
}
|
|
|
|
#---- arch license gpg-key & sha256sums ----
|
|
|
|
arch=(x86_64)
|
|
|
|
license=('GPL')
|
|
|
|
sha256sums=(e157d8e5c64d3a755707791e9be93296c6d249d5c4478bf941b675d49c47757d) # fakeroot_1.33.orig.tar.gz
|
|
|
|
## 9891164d2e10204c8528d36d57c31646d7787d602941e5877cf3f86508289836 fakeroot-1.33-02-x86_64.pkg.tar.lz
|
|
|
|
|