diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-20 09:38:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-20 09:38:38 +0000 |
commit | d397350ea61277f11283117669329b0c88ba2bde (patch) | |
tree | 6bae4f13711044dcce35ae3fee67040e94d4f19e | |
parent | cd951f164256fd464d614905757cd366c5684b2e (diff) | |
download | aports-d397350ea61277f11283117669329b0c88ba2bde.tar.bz2 aports-d397350ea61277f11283117669329b0c88ba2bde.tar.xz |
core/zlib: install pkgconfig in /usr
-rw-r--r-- | core/zlib/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/zlib/APKBUILD b/core/zlib/APKBUILD index 5e0125899..fa531e9f6 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=5 +pkgrel=6 pkgdesc="A compression/decompression Library" license=custom:zlib url="http://www.gzip.org/zlib" @@ -14,6 +14,9 @@ build() { ./configure --prefix=/usr --libdir=/lib --shared make || return 1 make install DESTDIR="$pkgdir" || return 1 + + # we want the zlib.pc be a part of -dev package + mv "$pkgdir"/lib/pkgconfig "$pkgdir"/usr/lib/ } md5sums="c444cf020e5f0e3323b11f5a2d8af8d3 zlib-1.2.3.3.tar.gz" |