core/zlib/Pkgfile

22 lines
538 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: A compression/decompression Library
# URL: http://www.zlib.net/
# Maintainer: Per Lid<69>n, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=zlib
version=1.2.3
release=1
source=(http://www.zlib.net/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr
make
make prefix=$PKG/usr mandir=$PKG/usr/man install
make clean
export CFLAGS="${CFLAGS} -fPIC"
./configure --prefix=/usr --shared
make
make prefix=$PKG/usr mandir=$PKG/usr/man install
chmod -x $PKG/usr/lib/libz.a
}