diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-20 11:31:23 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-20 11:31:23 +0000 |
commit | c6d806908f1ce4617ea97eea95f062ef813bfcd6 (patch) | |
tree | a6b244b645c355cb78999ce183fb66ce875f8780 | |
parent | d397350ea61277f11283117669329b0c88ba2bde (diff) | |
download | aports-c6d806908f1ce4617ea97eea95f062ef813bfcd6.tar.bz2 aports-c6d806908f1ce4617ea97eea95f062ef813bfcd6.tar.xz |
core/zlib: same fix as last, but hopefully done correctly
-rw-r--r-- | core/zlib/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/zlib/APKBUILD b/core/zlib/APKBUILD index fa531e9f60..f497f2c114 100644 --- a/core/zlib/APKBUILD +++ b/core/zlib/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=zlib pkgver=1.2.3.3 -pkgrel=6 +pkgrel=7 pkgdesc="A compression/decompression Library" license=custom:zlib url="http://www.gzip.org/zlib" @@ -16,6 +16,7 @@ build() { make install DESTDIR="$pkgdir" || return 1 # we want the zlib.pc be a part of -dev package + mkdir -p "$pkgdir"/usr/lib mv "$pkgdir"/lib/pkgconfig "$pkgdir"/usr/lib/ } |