wok view zlib/receipt @ rev 3041

Add libgphoto2 (import photos from camera)
author Rohit Joshi <jozee@slitaz.org>
date Tue May 12 16:58:53 2009 +0000 (2009-05-12)
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 }