wok diff jbig2dec/receipt @ rev 23443
updated postfixadmin again (3.2 -> 3.2.3)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Apr 02 15:23:47 2020 +0100 (2020-04-02) |
parents | ec67a3ebb1e2 |
children | 3ae2d1f7b186 |
line diff
1.1 --- a/jbig2dec/receipt Wed Sep 16 14:46:31 2015 +0200 1.2 +++ b/jbig2dec/receipt Thu Apr 02 15:23:47 2020 +0100 1.3 @@ -1,30 +1,35 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="jbig2dec" 1.7 -VERSION="0.11" 1.8 +VERSION="0.17" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format" 1.11 +SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format." 1.12 MAINTAINER="slaxemulator@gmail.com" 1.13 LICENSE="GPL3" 1.14 +WEB_SITE="https://github.com/ArtifexSoftware/jbig2dec" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://jbig2dec.sourceforge.net/" 1.18 -WGET_URL="http://ghostscript.com/~giles/jbig2/$PACKAGE/$TARBALL" 1.19 +WGET_URL="$WEB_SITE/archive/$VERSION/$TARBALL" 1.20 + 1.21 +BUILD_DEPENDS="autoconf automake libpng-dev libtool" 1.22 + 1.23 HOST_ARCH="i486 arm" 1.24 1.25 -BUILD_DEPENDS="libpng-dev" 1.26 - 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 - ./configure \ 1.31 + ./autogen.sh && 1.32 + ./configure \ 1.33 $CONFIGURE_ARGS && 1.34 - make && make install 1.35 + make && 1.36 + make install 1.37 } 1.38 1.39 # Rules to gen a SliTaz package suitable for Tazpkg. 1.40 genpkg_rules() 1.41 { 1.42 mkdir -p $fs/usr/lib 1.43 - cp -a $install/usr/bin $fs/usr 1.44 - cp -a $install/usr/lib/*.so* $fs/usr/lib 1.45 + 1.46 + cp -a $install/usr/bin $fs/usr 1.47 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.48 }