From 21f440daa5c0077806cbb2e99daadd159294de30 Mon Sep 17 00:00:00 2001 From: Leo Date: Mon, 9 Sep 2019 20:17:45 -0300 Subject: [PATCH] community/hivex: drop python2 bindings --- community/hivex/APKBUILD | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/community/hivex/APKBUILD b/community/hivex/APKBUILD index d58c55e8d97..6fe5cf2caea 100644 --- a/community/hivex/APKBUILD +++ b/community/hivex/APKBUILD @@ -2,19 +2,17 @@ # Maintainer: Francesco Colista pkgname=hivex pkgver=1.3.18 -pkgrel=2 +pkgrel=3 pkgdesc="System for extracting the contents of Windows Registry." url="http://libguestfs.org" arch="all" license="LGPL-2.1" -makedepends="python2-dev libxml2-dev readline-dev perl-dev" +makedepends="libxml2-dev readline-dev perl-dev" checkdepends="bash" subpackages="$pkgname-dev $pkgname-doc" -source="http://libguestfs.org/download/$pkgname/$pkgname-$pkgver.tar.gz" -builddir="$srcdir/$pkgname-$pkgver" +source="http://libguestfs.org/download/hivex/hivex-$pkgver.tar.gz" build() { - cd "$builddir" ./configure \ --bindir=/usr/bin \ --libdir=/usr/lib \ @@ -23,17 +21,16 @@ build() { --disable-perl \ --disable-ruby \ --disable-ocaml \ + --disable-python \ --disable-static make } check() { - cd "$builddir" make check } package() { - cd "$builddir" make DESTDIR="$pkgdir" install }