wok diff djvulibre/receipt @ rev 24621

updated graphicsmagick (1.3.34 -> 1.3.37)
author Hans-G?nter Theisgen
date Mon Mar 07 11:14:15 2022 +0100 (2022-03-07)
parents 640a2eba2511
children 00bff3684d8a
line diff
     1.1 --- a/djvulibre/receipt	Mon Feb 07 11:38:23 2022 +0000
     1.2 +++ b/djvulibre/receipt	Mon Mar 07 11:14:15 2022 +0100
     1.3 @@ -1,20 +1,21 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="djvulibre"
     1.7 -VERSION="3.5.27"
     1.8 +VERSION="3.5.28"
     1.9  CATEGORY="office"
    1.10  SHORT_DESC="A web-centric format and software platform for distributing documents and images."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 -WEB_SITE="http://djvu.sourceforge.net/"
    1.14 +WEB_SITE="https://sourceforge.net/projects/djvu/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17  WGET_URL="$SF_MIRROR/djvu/$TARBALL"
    1.18  
    1.19 +DEPENDS="jpeg tiff"
    1.20 +BUILD_DEPENDS="bash jpeg-dev librsvg-apps tiff-dev xdg-utils"
    1.21 +
    1.22  #HOST_ARCH="i486 arm"
    1.23  
    1.24 -DEPENDS="gcc-lib-base tiff jpeg"
    1.25 -BUILD_DEPENDS="tiff-dev jpeg-dev xdg-utils bash librsvg-apps wget"
    1.26 -
    1.27  # Handle cross compilation. Build host must have: xdg-utils bash librsvg-apps
    1.28  case "$ARCH" in
    1.29  	arm*) BUILD_DEPENDS="tiff-dev jpeg-dev " ;;
    1.30 @@ -31,8 +32,8 @@
    1.31  # Rules to configure and make the package.
    1.32  compile_rules()
    1.33  {
    1.34 -	./configure \
    1.35 -		--sysconfdir=/etc \
    1.36 +	./configure			\
    1.37 +		--sysconfdir=/etc	\
    1.38  		$CONFIGURE_ARGS &&
    1.39  	make &&
    1.40  	make install
    1.41 @@ -41,8 +42,10 @@
    1.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.43  genpkg_rules()
    1.44  {
    1.45 -	mkdir -p $fs/usr/lib $fs/usr/share
    1.46 -	cp -a $install/usr/lib/*so* $fs/usr/lib
    1.47 -	cp -a $install/usr/bin $fs/usr
    1.48 -	cp -a $install/usr/share/djvu $fs/usr/share
    1.49 +	mkdir -p $fs/usr/lib
    1.50 +	mkdir -p $fs/usr/share
    1.51 +
    1.52 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.53 +	cp -a $install/usr/bin		$fs/usr
    1.54 +	cp -a $install/usr/share/djvu	$fs/usr/share
    1.55  }