diff options
Diffstat (limited to 'main/lzip')
-rw-r--r-- | main/lzip/APKBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/main/lzip/APKBUILD b/main/lzip/APKBUILD index 0f1c98b429..e6395f1ed1 100644 --- a/main/lzip/APKBUILD +++ b/main/lzip/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to> pkgname=lzip pkgver=1.19 -pkgrel=1 +pkgrel=2 pkgdesc="Lzip is a lossless data compressor" url="http://www.nongnu.org/lzip/lzip.html" arch="all" @@ -14,7 +14,12 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - ./configure --prefix=/usr + ./configure \ + --prefix=/usr \ + CXX="${CXX-g++}" \ + CPPFLAGS="${CPPFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" make } |