CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
man-pages: updated to 4.09
[crossrootfs.git] / zlib / Pkgfile
... / ...
CommitLineData
1# Description: A compression/decompression Library
2# URL: http://www.zlib.net/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5# Depends on:
6
7name=zlib
8version=1.2.11
9release=1
10source=(http://www.zlib.net/$name-$version.tar.gz)
11
12build() {
13 cd $name-$version
14 ./configure --prefix=/usr --sharedlibdir=/lib
15 make
16 make DESTDIR=$PKG install
17 ln -sf ../../lib/libz.so.$version $PKG/usr/lib/libz.so
18 rm $PKG/lib/libz.so
19}