wok-stable view libpng/receipt @ rev 10714
Up: tazlito (4.1) - Bug fixes, extraction tools in loram and less vebose
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat May 28 21:02:57 2011 +0200 (2011-05-28) |
parents | cab8d2e3649f |
children | 174c53de4876 |
line source
1 # SliTaz package receipt.
3 PACKAGE="libpng"
4 VERSION="1.2.44"
5 CATEGORY="x-window"
6 SHORT_DESC="PNG images library."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 BUILD_DEPENDS="pkg-config"
10 WEB_SITE="http://libpng.org/pub/png/libpng.html"
11 WGET_URL="$SF_MIRROR/libpng/$TARBALL"
12 DEPENDS="zlib"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --enable-shared \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/lib/libpng*.so* $fs/usr/lib
32 }