wok-next diff jbig2dec/receipt @ rev 21397

opentyrian: add "glib" to bdeps for /usr/bin/glib-compile-schemas
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 18 17:26:44 2020 +0300 (2020-04-18)
parents 5669e8b3be70
children
line diff
     1.1 --- a/jbig2dec/receipt	Sat Dec 22 04:52:35 2018 +0200
     1.2 +++ b/jbig2dec/receipt	Sat Apr 18 17:26:44 2020 +0300
     1.3 @@ -1,29 +1,28 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="jbig2dec"
     1.7 -VERSION="0.11"
     1.8 +VERSION="0.15"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format"
    1.11  MAINTAINER="devel@slitaz.org"
    1.12  LICENSE="GPL3"
    1.13 -WEB_SITE="https://sourceforge.net/projects/jbig2dec/"
    1.14 +WEB_SITE="https://jbig2dec.com/"
    1.15  
    1.16 -TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.17 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.18 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.19 +WGET_URL="https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs924/$TARBALL"
    1.20 +TARBALL_SHA1="54f184c07497feb9f96ed67a59715fda92f7b79d"
    1.21  
    1.22 -BUILD_DEPENDS="libpng-dev"
    1.23 +BUILD_DEPENDS="automake libtool libpng-dev"
    1.24  SPLIT="$PACKAGE-dev"
    1.25  
    1.26 +DEPENDS_std="libpng"
    1.27 +
    1.28  compile_rules() {
    1.29 -	./configure $CONFIGURE_ARGS &&
    1.30 +	 autoreconf -vif
    1.31 +	./configure \
    1.32 +		--disable-static \
    1.33 +		$CONFIGURE_ARGS &&
    1.34  	fix libtool &&
    1.35  	make &&
    1.36  	make install
    1.37  }
    1.38 -
    1.39 -genpkg_rules() {
    1.40 -	case $PACKAGE in
    1.41 -		jbig2dec) copy @std;;
    1.42 -		*-dev)    copy @dev;;
    1.43 -	esac
    1.44 -}