wok view tiff/receipt @ rev 502

syslinux-extra: compress /usr/share/syslinux files
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 26 07:41:01 2008 +0000 (2008-03-26)
parents
children f735d88b709d
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 WEB_SITE="http://www.remotesensing.org/libtiff/"
10 WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 strip --strip-unneeded $fs/usr/lib/*.so*
28 }