summaryrefslogtreecommitdiffstats
path: root/main/fakeroot/APKBUILD
blob: a04750f84f7f8ba4adea4392f34c969dca2b4fe1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=fakeroot
pkgver=1.20
pkgrel=2
pkgdesc="Gives a fake root environment, useful for building packages as a non-privileged user"
arch="all"
license='GPL'
url="http://fakeroot.alioth.debian.org/"
depends=
makedepends_host="libcap-dev acl-dev"
makedepends="$makedepends_host"
subpackages="$pkgname-doc"
source="http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.orig.tar.bz2
	busybox-getopt.patch
	fakeroot-hide-dlsym-errors.patch
	fakeroot-no64.patch
	fakeroot-stdint.patch
	fakeroot-uclibc.patch"

prepare() {
	cd $startdir/src/$pkgname-$pkgver
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done

	if [ "$CLIBC" = "musl" ]; then
		# overrides wrong symbol for musl, so hack the config script
		sed -e 's/for WRAPPED in __${PRE}x${FUNC} _${PRE}x${FUNC} __${PRE}${FUNC}13 ${PRE}${FUNC}; do/for WRAPPED in ${PRE}${FUNC}; do/' \
		    -i configure
	fi
}

build() {
	cd $startdir/src/$pkgname-$pkgver

	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 \
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--disable-static \
		|| return 1
	make || return 1
}

package() {
	cd $startdir/src/$pkgname-$pkgver
	make DESTDIR="$pkgdir" install || return 1
	rm "$pkgdir"/usr/lib/*.la
}

md5sums="9777a81d4d1878422447a1d0030c1f9f  fakeroot_1.20.orig.tar.bz2
bdbf1db14f2cfdff0f5b4c35da78b9fe  busybox-getopt.patch
624cd86a66d020d01bde4ba60efc4d40  fakeroot-hide-dlsym-errors.patch
3fc66a8ffb365fcf2acd652d33f101a2  fakeroot-no64.patch
50a899380cfd5eae8ce3aaf878fb17b2  fakeroot-stdint.patch
7a54ab51fdb90bc44e366e0a66811bfe  fakeroot-uclibc.patch"
sha256sums="2297b7e79487cf0bbc64ff6d3d02446d895e82e2b26467c74fd1119011f6f098  fakeroot_1.20.orig.tar.bz2
e915ce6cf414da590d39c735e1e522725717f43bfe6da77bd62cd1be365a06ec  busybox-getopt.patch
915313c164b2968bc785621d14e652aae0bb74cec01510457d1fa601f23e0ca2  fakeroot-hide-dlsym-errors.patch
3420da0789caef582fcfc890c657da4136b3b06d1205443f4409cdf85ab02a46  fakeroot-no64.patch
8739c0b79c3f2b0e46cd0dffa8b73d946efbe994f61f69f7d1115c2dcec22df1  fakeroot-stdint.patch
e325ad9aad310caa71002adea220795f706c621c5794093f16c0f319b3d58977  fakeroot-uclibc.patch"
sha512sums="b041ab87559f784041f05bfa9d5186ceaafebbcbd03057ede62bf420551e337ceec4b7101854937e206c6389ac2c0719545d5971457edaf564856bb44ce7b4b6  fakeroot_1.20.orig.tar.bz2
3a3cfcddbfe6685111d2a9dd93ebe5816bacab664aa19004cc39e18c00b5ef8045cb153755f66cabb204f17e2495ce38e2fb37fdc8da01cc69ec62e4694e3001  busybox-getopt.patch
666f41d6adc5e65eba419e08d5bbc4f561e40b0fc7bfa82090eb87962a7f3193bf319754e04aca289e865c66df2ecced1dbb45c9aa9f093657f22193dda25354  fakeroot-hide-dlsym-errors.patch
7a832e6bed3838c7c488e0e12ba84b8d256e84bbb06d6020247452a991de505fa5c6bd7bcb84dce8753eb242e0fcab863b5461301cd56695f2b003fe8d6ff209  fakeroot-no64.patch
ed7a58b0d201139545420f9e5429f503c00e00f36dea84473e77ea99b23bb8d421da1a8a8ce98ff90e72e378dff4cb9ea3c1a863a969899a5f50dfac3b9c5fac  fakeroot-stdint.patch
783ceaf00c6c1c190327dbc3f67761488aaeb23e40b3a249bcaf301f99334721a864f8a730abfb0e17467bad24f5db9127d83379dea3ef24b6f708ff7dfb3f98  fakeroot-uclibc.patch"