wok view tiff/receipt @ rev 15879

tinc: fix /var path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 05 13:18:58 2014 +0000 (2014-02-05)
parents de49f29b101e
children 0b50bcb60588
line source
1 # SliTaz package receipt.
3 PACKAGE="tiff"
4 VERSION="4.0.3"
5 CATEGORY="x-window"
6 SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.remotesensing.org/libtiff/"
11 WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL"
13 DEPENDS="jpeg zlib gcc-lib-base"
14 BUILD_DEPENDS="jpeg-dev zlib-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $install/usr/lib/*.so* $fs/usr/lib
30 }