wok annotate jbig2dec/receipt @ rev 19917

gimp, hplip: update dependencies (thanks andreid)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Apr 15 16:01:44 2017 +0300 (2017-04-15)
parents d6b99c62ef00
children 526684d23251
rev   line source
slaxemulator@6842 1 # SliTaz package receipt.
slaxemulator@6842 2
slaxemulator@6842 3 PACKAGE="jbig2dec"
slaxemulator@6842 4 VERSION="0.11"
slaxemulator@6842 5 CATEGORY="development"
pankso@16218 6 SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format"
slaxemulator@6842 7 MAINTAINER="slaxemulator@gmail.com"
pascal@14999 8 LICENSE="GPL3"
slaxemulator@6842 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
slaxemulator@6842 10 WEB_SITE="http://jbig2dec.sourceforge.net/"
slaxemulator@6842 11 WGET_URL="http://ghostscript.com/~giles/jbig2/$PACKAGE/$TARBALL"
pankso@16218 12 HOST_ARCH="i486 arm"
pascal@14999 13
pascal@18364 14 BUILD_DEPENDS="libpng-dev"
pascal@18364 15
slaxemulator@6842 16 # Rules to configure and make the package.
slaxemulator@6842 17 compile_rules()
slaxemulator@6842 18 {
slaxemulator@6842 19 ./configure \
slaxemulator@6842 20 $CONFIGURE_ARGS &&
pankso@16218 21 make && make install
slaxemulator@6842 22 }
slaxemulator@6842 23
slaxemulator@6842 24 # Rules to gen a SliTaz package suitable for Tazpkg.
slaxemulator@6842 25 genpkg_rules()
slaxemulator@6842 26 {
slaxemulator@6842 27 mkdir -p $fs/usr/lib
pascal@14999 28 cp -a $install/usr/bin $fs/usr
pascal@14999 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
slaxemulator@6842 30 }