wok rev 22967

updated jbig2dec and jbig2dec-dev (0.11 -> 0.17)
author Hans-G?nter Theisgen
date Sat Feb 29 13:21:13 2020 +0100 (2020-02-29)
parents 204fd735da5d
children dfcba080567b
files jbig2dec-dev/receipt jbig2dec/receipt
line diff
     1.1 --- a/jbig2dec-dev/receipt	Fri Feb 28 17:20:34 2020 +0100
     1.2 +++ b/jbig2dec-dev/receipt	Sat Feb 29 13:21:13 2020 +0100
     1.3 @@ -1,22 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="jbig2dec-dev"
     1.7 -VERSION="0.11"
     1.8 +VERSION="0.17"
     1.9  CATEGORY="development"
    1.10 -SHORT_DESC="devel files for jbig2dec"
    1.11 +SHORT_DESC="Development files for jbig2dec."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="GPL3"
    1.14 -WEB_SITE="http://jbig2dec.sourceforge.net/"
    1.15 -WANTED="jbig2dec"
    1.16 -HOST_ARCH="i486 arm"
    1.17 +WEB_SITE="https://github.com/ArtifexSoftware/jbig2dec"
    1.18  
    1.19  DEPENDS="jbig2dec"
    1.20 +WANTED="jbig2dec"
    1.21 +
    1.22 +HOST_ARCH="i486 arm"
    1.23  
    1.24  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.25  genpkg_rules()
    1.26  {
    1.27  	mkdir -p $fs/usr/lib
    1.28 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.29 -	cp -a $install/usr/include $fs/usr
    1.30 +
    1.31 +	cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.32 +	cp -a $install/usr/include	$fs/usr
    1.33  }
    1.34 -
     2.1 --- a/jbig2dec/receipt	Fri Feb 28 17:20:34 2020 +0100
     2.2 +++ b/jbig2dec/receipt	Sat Feb 29 13:21:13 2020 +0100
     2.3 @@ -1,30 +1,35 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="jbig2dec"
     2.7 -VERSION="0.11"
     2.8 +VERSION="0.17"
     2.9  CATEGORY="development"
    2.10 -SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format"
    2.11 +SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format."
    2.12  MAINTAINER="slaxemulator@gmail.com"
    2.13  LICENSE="GPL3"
    2.14 +WEB_SITE="https://github.com/ArtifexSoftware/jbig2dec"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17 -WEB_SITE="http://jbig2dec.sourceforge.net/"
    2.18 -WGET_URL="http://ghostscript.com/~giles/jbig2/$PACKAGE/$TARBALL"
    2.19 +WGET_URL="$WEB_SITE/archive/$VERSION/$TARBALL"
    2.20 +
    2.21 +BUILD_DEPENDS="autoconf automake libpng-dev libtool"
    2.22 +
    2.23  HOST_ARCH="i486 arm"
    2.24  
    2.25 -BUILD_DEPENDS="libpng-dev"
    2.26 -
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 -	./configure \
    2.31 +	./autogen.sh &&
    2.32 +	./configure		\
    2.33  		$CONFIGURE_ARGS &&
    2.34 -	make && make install
    2.35 +	make &&
    2.36 +	make install
    2.37  }
    2.38  
    2.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.40  genpkg_rules()
    2.41  {
    2.42  	mkdir -p $fs/usr/lib
    2.43 -	cp -a $install/usr/bin $fs/usr
    2.44 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    2.45 +
    2.46 +	cp -a $install/usr/bin		$fs/usr
    2.47 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    2.48  }