diff options
Diffstat (limited to 'system/fakeroot/APKBUILD')
-rw-r--r-- | system/fakeroot/APKBUILD | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/system/fakeroot/APKBUILD b/system/fakeroot/APKBUILD index 18aedfd36..984739111 100644 --- a/system/fakeroot/APKBUILD +++ b/system/fakeroot/APKBUILD @@ -4,10 +4,9 @@ pkgver=1.22 pkgrel=0 pkgdesc="Utility to provide a 'fake' root environment as a non-privileged user" arch="all" -options="!checkroot" license="GPL-3.0+" -url="http://fakeroot.alioth.debian.org/" -depends= +url="https://wiki.debian.org/FakeRoot" +depends="" makedepends_build="libtool autoconf automake po4a" makedepends_host="libcap-dev acl-dev linux-headers" makedepends="$makedepends_build $makedepends_host" @@ -23,8 +22,6 @@ source="http://ftp.debian.org/debian/pool/main/f/$pkgname/${pkgname}_${pkgver}.o " build() { - cd "$builddir" - 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) @@ -44,12 +41,10 @@ build() { } check() { - cd "$builddir" bash -c 'make check' } package() { - cd "$builddir" make DESTDIR="$pkgdir" install } |