wok view zlib-dev/receipt @ rev 17

Add : slitaz-mercurial-style + xfree86 font and Xvesa
author Christophe Lincoln <pankso@slitaz.org>
date Tue Dec 18 13:35:16 2007 +0100 (2007-12-18)
parents
children ea7228b3f479
line source
1 # SliTaz package receipt.
3 PACKAGE="zlib-dev"
4 VERSION="1.2.3"
5 CATEGORY="devel"
6 SHORT_DESC="Zlib compression library devel files."
7 MAINTAINER="pankso@slitaz.org"
8 WANTED="zlib"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.zlib.net/"
11 WGET_URL="http://www.clex.sk/download/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr
18 make
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 mkdir -p $fs/usr/include
26 cp -a $src/libz.a $fs/usr/lib
27 cp $src/zconf.h $fs/usr/include
28 cp $src/zlib.h $fs/usr/include
29 }