wok-next diff tiff/receipt @ rev 19624

Fix some WANTED versions
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 08 16:29:10 2017 +0100 (2017-02-08)
parents 124c3a7da04f
children 1a86cb99cbbf
line diff
     1.1 --- a/tiff/receipt	Fri Dec 04 02:45:17 2015 +0200
     1.2 +++ b/tiff/receipt	Wed Feb 08 16:29:10 2017 +0100
     1.3 @@ -1,29 +1,32 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="tiff"
     1.7 -VERSION="4.0.3"
     1.8 +VERSION="4.0.6"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="MIT"
    1.13 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14 -WEB_SITE="http://www.remotesensing.org/libtiff/"
    1.15 -WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL"
    1.16 +WEB_SITE="http://www.libtiff.org/"
    1.17  HOST_ARCH="i486 arm"
    1.18  
    1.19 -DEPENDS="jpeg zlib gcc-lib-base"
    1.20 -BUILD_DEPENDS="jpeg-dev zlib-dev"
    1.21 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.22 +WGET_URL="http://download.osgeo.org/libtiff/$TARBALL"
    1.23 +
    1.24 +DEPENDS="jpeg-turbo zlib"
    1.25 +BUILD_DEPENDS="cmake libjpeg-turbo-dev zlib-dev"
    1.26 +SPLIT="tiff-apps"
    1.27  
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure $CONFIGURE_ARGS &&
    1.32 +	./configure \
    1.33 +		--disable-static \
    1.34 +		$CONFIGURE_ARGS &&
    1.35  	make && make install
    1.36  }
    1.37  
    1.38  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.39  genpkg_rules()
    1.40  {
    1.41 -	mkdir -p $fs/usr/lib
    1.42 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.43 +	cook_copy_files *.so*
    1.44  }