diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2016-07-13 10:18:18 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2016-07-13 10:18:22 +0000 |
commit | dc57631dd967670cc7b4b7beab2db41de264a319 (patch) | |
tree | 3fb3d7b2d86405753a021fc59b12e7af3f2f60f8 | |
parent | be4b0755b00e5681e268067d5a2068e2d765db2b (diff) | |
download | aports-dc57631dd967670cc7b4b7beab2db41de264a319.tar.bz2 aports-dc57631dd967670cc7b4b7beab2db41de264a319.tar.xz |
testing/hivex: added perl as dep for build fix
-rw-r--r-- | testing/hivex/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testing/hivex/APKBUILD b/testing/hivex/APKBUILD index 8d0b950079..f08af81e6d 100644 --- a/testing/hivex/APKBUILD +++ b/testing/hivex/APKBUILD @@ -8,7 +8,7 @@ url="http://libguestfs.org" arch="all" license="LGPL2.1" depends="" -makedepends="python-dev libxml2-dev readline-dev" +makedepends="python-dev libxml2-dev readline-dev perl" subpackages="$pkgname-dev $pkgname-doc" source="http://libguestfs.org/download/$pkgname/$pkgname-$pkgver.tar.gz" builddir="$srcdir/$pkgname-$pkgver" @@ -20,6 +20,9 @@ build() { --libdir=/usr/lib \ --prefix=/usr \ --disable-rpath \ + --disable-perl \ + --disable-ruby \ + --disable-ocaml \ --disable-static make || return 1 } |