wok view tiff/receipt @ rev 3724

Update: xorg-libXtst (DEPENDS and BUILD_DEPENDS)
author Matthew Sheets <rcx@zoominternet.net>
date Tue Jul 21 16:59:26 2009 +0000 (2009-07-21)
parents 8e5c96401d01
children 4897058add72
line source
1 # SliTaz package receipt.
3 PACKAGE="tiff"
4 VERSION="3.8.2"
5 CATEGORY="x-window"
6 SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="jpeg zlib"
10 WEB_SITE="http://www.remotesensing.org/libtiff/"
11 WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
28 strip --strip-unneeded $fs/usr/lib/*.so*
29 }