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
|
2024-06-06 23:33:37 +02:00
|
|
|
pkgver=1.35
|
2024-03-08 02:57:59 +01:00
|
|
|
pkgrel=01
|
2022-03-20 13:19:37 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
2024-02-01 11:59:55 +01:00
|
|
|
install -dm0755 "$pkgdir/usr/lib/ld.so.conf.d/"
|
|
|
|
echo '/usr/lib/libfakeroot' > "$pkgdir/usr/lib/ld.so.conf.d/fakeroot.conf"
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
# install README for sysv/tcp usage
|
|
|
|
install -Dm0644 README "$pkgdir/usr/share/doc/$pkgname/README"
|
2024-02-01 11:59:55 +01:00
|
|
|
|
2022-03-20 13:19:37 +01:00
|
|
|
}
|
|
|
|
|
2023-07-12 21:49:47 +02:00
|
|
|
#---- arch license gpg-key & sha256sums ----
|
2022-03-20 13:19:37 +01:00
|
|
|
|
2023-07-12 21:49:47 +02:00
|
|
|
arch=(x86_64)
|
2022-03-20 13:19:37 +01:00
|
|
|
|
|
|
|
license=('GPL')
|
|
|
|
|
2024-06-06 23:33:37 +02:00
|
|
|
sha256sums=(e5a427b4ab1eb4a2158b3312547a4155aede58735cd5c2910421988834b440a4) # fakeroot_1.35.orig.tar.gz
|
2024-02-01 11:59:55 +01:00
|
|
|
|
2024-06-06 23:33:37 +02:00
|
|
|
## 2b22d8054e2946f4ec3d66d872399eaa39aedbbd7660f879dcde2c4f12a815b9 fakeroot-1.35-01-x86_64.pkg.tar.lz
|
2022-05-24 16:32:48 +02:00
|
|
|
|