diff options
Diffstat (limited to 'community/minizip/APKBUILD')
-rw-r--r-- | community/minizip/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/minizip/APKBUILD b/community/minizip/APKBUILD index 06276e8b7e..ee9e952f72 100644 --- a/community/minizip/APKBUILD +++ b/community/minizip/APKBUILD @@ -1,13 +1,13 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=minizip pkgver=1.2.11 -pkgrel=1 +pkgrel=2 pkgdesc="a library for manipulation with files from .zip archives" arch="all" license="Zlib" url="https://zlib.net" makedepends="automake autoconf libtool zlib-dev" -subpackages="$pkgname-dev" +subpackages="$pkgname-static $pkgname-dev" options="!check" # No testsuite source="https://zlib.net/zlib-$pkgver.tar.gz zlib-1.2.8-minizip-include.patch" @@ -22,7 +22,7 @@ prepare() { build() { ./configure \ --prefix=/usr \ - --enable-static=no + --enable-static=yes make } |