diff options
Diffstat (limited to 'main/p7zip/APKBUILD')
-rw-r--r-- | main/p7zip/APKBUILD | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/main/p7zip/APKBUILD b/main/p7zip/APKBUILD index 7ecd4bb6e2..19ecadb2c5 100644 --- a/main/p7zip/APKBUILD +++ b/main/p7zip/APKBUILD @@ -1,13 +1,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=p7zip pkgver=9.04 -pkgrel=1 +pkgrel=2 pkgdesc="A command-line port of the 7zip compression utility" url="http://p7zip.sourceforge.net" license="GPL" subpackages="$pkgname-doc" depends= -makedepends="bash uclibc++-dev" +makedepends="bash" #install=p7zip.install source="http://downloads.sourceforge.net/sourceforge/$pkgname/${pkgname}_${pkgver}_src_all.tar.bz2 p7zip-cc-cxx.patch" @@ -16,8 +16,6 @@ build() { cd "$srcdir"/${pkgname}_${pkgver} patch -p1 -i ../p7zip-cc-cxx.patch || return 1 sed -i "s|usr/local|usr|g" makefile - export CXX=${UC_CXX:-g++-uc} - make all3 OPTFLAGS="${CXXFLAGS}" || return 1 } |