summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 17:47:57 +0100
committerLukc <lukc@upyum.com>2010-12-12 17:47:57 +0100
commit9ec9688a50b418431393d3fce3cadee76c6ca178 (patch)
tree4e1a43dec1147fc99b7897e4ed283cd85fb770ac
parente2a943823a06558fceb9980acbab08c144738142 (diff)
downloadbase-9ec9688a50b418431393d3fce3cadee76c6ca178.tar.gz
base-9ec9688a50b418431393d3fce3cadee76c6ca178.tar.bz2
base-9ec9688a50b418431393d3fce3cadee76c6ca178.tar.xz
base-9ec9688a50b418431393d3fce3cadee76c6ca178.zip
Recette de zlib mise à jour.
-rw-r--r--zlib/.footprint7
-rw-r--r--zlib/.sha256sum2
-rw-r--r--zlib/Pkgfile18
3 files changed, 15 insertions, 12 deletions
diff --git a/zlib/.footprint b/zlib/.footprint
index f7f7ba2..fc44a6f 100644
--- a/zlib/.footprint
+++ b/zlib/.footprint
@@ -9,6 +9,7 @@ lrwxrwxrwx root/root usr/lib/libz.so.1 -> libz.so.1.2.5
-rwxr-xr-x root/root usr/lib/libz.so.1.2.5
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/zlib.pc
-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
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man3/
+-rw-r--r-- root/root usr/share/man/man3/zlib.3.bz2
diff --git a/zlib/.sha256sum b/zlib/.sha256sum
new file mode 100644
index 0000000..9644fed
--- /dev/null
+++ b/zlib/.sha256sum
@@ -0,0 +1,2 @@
+8953fea34d7eb2bf0a5393e5aeacb6c6c17f25fa2524c5f557f459184e2e20d8 zlib-1.2.5-lfs-decls.patch
+239aead2f22f16bfcfa6a6a5150dcbd6d6f2e4d1eaa8727b5769ea014120b307 zlib-1.2.5.tar.bz2
diff --git a/zlib/Pkgfile b/zlib/Pkgfile
index 029103e..80d0e93 100644
--- a/zlib/Pkgfile
+++ b/zlib/Pkgfile
@@ -1,18 +1,18 @@
-description="A compression/decompression Library"
-packager=""
-maintainer="CRUX System Team, core-ports at crux dot nu"
+description="A compression/decompression Library."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.zlib.net/"
depends=()
name=zlib
version=1.2.5
release=2
-source=(http://www.zlib.net/zlib-1.2.5.tar.bz2 zlib-1.2.5-lfs-decls.patch)
+source=(http://www.zlib.net/$name-$version.tar.bz2 zlib-$version-lfs-decls.patch)
build ()
{
- cd $name-$version;
- patch -p1 -i $SRC/$name-$version-lfs-decls.patch;
- ./configure --prefix=/usr;
- make;
- make DESTDIR=$PKG mandir=/usr/man install
+ cd $name-$version;
+ patch -p1 -i $SRC/$name-$version-lfs-decls.patch;
+ ./configure --prefix=$prefix;
+ make;
+ make DESTDIR=$PKG mandir=$mandir install
}