From d6bc2ac98e5bc34997b2e0e2ffbc4a28212d373d Mon Sep 17 00:00:00 2001 From: xhaa123 Date: Sat, 7 Sep 2024 23:18:11 +0800 Subject: [PATCH] fakeroot 1.36-1 --- fakeroot/PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 fakeroot/PKGBUILD diff --git a/fakeroot/PKGBUILD b/fakeroot/PKGBUILD new file mode 100644 index 0000000..db5d47f --- /dev/null +++ b/fakeroot/PKGBUILD @@ -0,0 +1,34 @@ +# This is an example PKGBUILD file. Use this as a start to creating your own, +# and remove these comments. For more information, see 'man PKGBUILD'. +# NOTE: Please fill out the license field for your package! If it is unknown, +# then please put 'unknown'. + +# Maintainer: Future Linux Team +pkgname=fakeroot +pkgver=1.36 +pkgrel=1 +pkgdesc="Tool for simulating superuser privileges" +arch=('x86_64') +url="https://tracker.debian.org/pkg/fakeroot" +license=('GPL') +groups=('base-devel') +depends=('glibc' 'sed' 'bash') # 'util-linux') +# makedepends=('systemd') +source=(https://deb.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.gz) +sha256sums=(7fe3cf3daf95ee93b47e568e85f4d341a1f9ae91766b4f9a9cdc29737dea4988) + +build() { + cd ${pkgname}-${pkgver} + + ${CONFIGURE} \ + --disable-static \ + --with-ipc=sysv + + make +} + +package() { + cd ${pkgname}-${pkgver} + + make DESTDIR=${pkgdir} install +}