diff options
author | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
---|---|---|
committer | Johannes Winkelmann <jw@smts.ch> | 2006-02-23 15:26:10 +0000 |
commit | e3afe2298e821d7f5860128720e665d8fb3bd641 (patch) | |
tree | bfb499432688352b1140b13ad8252c8e4e739006 /zlib | |
download | core-e3afe2298e821d7f5860128720e665d8fb3bd641.tar.gz core-e3afe2298e821d7f5860128720e665d8fb3bd641.tar.xz |
create branch for 2.2
Diffstat (limited to 'zlib')
-rw-r--r-- | zlib/.footprint | 12 | ||||
-rw-r--r-- | zlib/.md5sum | 1 | ||||
-rw-r--r-- | zlib/Pkgfile | 21 |
3 files changed, 34 insertions, 0 deletions
diff --git a/zlib/.footprint b/zlib/.footprint new file mode 100644 index 00000000..566b3682 --- /dev/null +++ b/zlib/.footprint @@ -0,0 +1,12 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/zconf.h +-rw-r--r-- root/root usr/include/zlib.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libz.a +lrwxrwxrwx root/root usr/lib/libz.so -> libz.so.1.2.3 +lrwxrwxrwx root/root usr/lib/libz.so.1 -> libz.so.1.2.3 +-rwxr-xr-x root/root usr/lib/libz.so.1.2.3 +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man3/ +-rw-r--r-- root/root usr/man/man3/zlib.3.gz diff --git a/zlib/.md5sum b/zlib/.md5sum new file mode 100644 index 00000000..71b1da9f --- /dev/null +++ b/zlib/.md5sum @@ -0,0 +1 @@ +dee233bf288ee795ac96a98cc2e369b6 zlib-1.2.3.tar.bz2 diff --git a/zlib/Pkgfile b/zlib/Pkgfile new file mode 100644 index 00000000..7681cb98 --- /dev/null +++ b/zlib/Pkgfile @@ -0,0 +1,21 @@ +# Description: A compression/decompression Library +# URL: http://www.zlib.net/ +# Maintainer: Per Lidén <per@fukt.bth.se> + +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 +} |