wok view zlib/receipt @ rev 2451

nss_ldap: enable-schema-mapping
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 13 15:51:27 2009 +0000 (2009-03-13)
parents 580279b0298b
children 79fc515af377
line source
1 # SliTaz package receipt.
3 PACKAGE="zlib"
4 VERSION="1.2.3"
5 CATEGORY="base-system"
6 SHORT_DESC="Compression library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.zlib.net/"
10 WGET_URL="http://www.gzip.org/zlib/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $PACKAGE-$VERSION
16 ./configure --shared --prefix=/usr
17 make
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $PACKAGE-$VERSION/libz.so* $fs/usr/lib
25 strip -s $fs/usr/lib/*
26 }