55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=fakeroot
|
|
pkgver=1.25.3
|
|
pkgrel=3
|
|
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user"
|
|
arch="all"
|
|
license="GPL-3.0-or-later"
|
|
url="https://packages.debian.org/fakeroot"
|
|
checkdepends="bash"
|
|
makedepends_build="libtool autoconf automake po4a"
|
|
makedepends_host="libcap-dev acl-dev linux-headers"
|
|
makedepends="$makedepends_build $makedepends_host"
|
|
subpackages="$pkgname-dbg $pkgname-doc"
|
|
source="http://ftp.debian.org/debian/pool/main/f/fakeroot/fakeroot_$pkgver.orig.tar.gz
|
|
fakeroot-no64.patch
|
|
fakeroot-stdint.patch
|
|
xstatjunk.patch
|
|
fix-shell-in-fakeroot.patch
|
|
fakeroot-skip-ipc-sanity-check.patch
|
|
"
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
build() {
|
|
if [ "$CLIBC" = "musl" ]; then
|
|
# musl does not have _STAT_VER, it's really not used for
|
|
# anything, so define it as zero (just like uclibc does)
|
|
export CFLAGS="-D_STAT_VER=0 $CFLAGS"
|
|
fi
|
|
|
|
CONFIG_SHELL=/bin/sh ./bootstrap
|
|
CONFIG_SHELL=/bin/sh ./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
|
|
make
|
|
cd doc
|
|
po4a -k 0 --rm-backups --variable "srcdir=../doc/" po4a/po4a.cfg
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="b54366ef82b49af414d7214d069a4bc7dd188dfa4f8e3121f6bd65fd67268b02346ff72e857087243ab0efe9fa82faaa9f9c3309cac4b5af0ea00908c2e5eb6e fakeroot_1.25.3.orig.tar.gz
|
|
7a832e6bed3838c7c488e0e12ba84b8d256e84bbb06d6020247452a991de505fa5c6bd7bcb84dce8753eb242e0fcab863b5461301cd56695f2b003fe8d6ff209 fakeroot-no64.patch
|
|
ed7a58b0d201139545420f9e5429f503c00e00f36dea84473e77ea99b23bb8d421da1a8a8ce98ff90e72e378dff4cb9ea3c1a863a969899a5f50dfac3b9c5fac fakeroot-stdint.patch
|
|
5efd33fd778bd94a529ed7e439fb8fea25ff865dda3f6f9e431264e942b37f3b5d7a0ad14107b55c5fa81b86efd5a82aedb3803cfab08ec57f27f5b229d2fe88 xstatjunk.patch
|
|
47593b3d86a66bab832c50a1d967cdc70e42bbd9ef4436f18140067ccefdd6418516e5157102c67e604f3623ed1b9f4fe1423fc5dad4dfe5356fc250c12818a7 fix-shell-in-fakeroot.patch
|
|
f1dcd9c34e74eb225c6a96262847e70f86f437c6bcf41c5d554ced2e3d08798296a66310296cc0ab177a7ea5a0271151326a3e79f72e4ed640b3bd20dbaabec1 fakeroot-skip-ipc-sanity-check.patch"
|