wok annotate jbig2dec/receipt @ rev 16556
Up: spk (1.4.2) - Critical bug fix for config files
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Wed Apr 30 14:37:37 2014 +0200 (2014-04-30) |
parents | 2b9f96603415 |
children | ec67a3ebb1e2 |
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 |
slaxemulator@6842 | 14 # Rules to configure and make the package. |
slaxemulator@6842 | 15 compile_rules() |
slaxemulator@6842 | 16 { |
slaxemulator@6842 | 17 ./configure \ |
slaxemulator@6842 | 18 $CONFIGURE_ARGS && |
pankso@16218 | 19 make && make install |
slaxemulator@6842 | 20 } |
slaxemulator@6842 | 21 |
slaxemulator@6842 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@6842 | 23 genpkg_rules() |
slaxemulator@6842 | 24 { |
slaxemulator@6842 | 25 mkdir -p $fs/usr/lib |
pascal@14999 | 26 cp -a $install/usr/bin $fs/usr |
pascal@14999 | 27 cp -a $install/usr/lib/*.so* $fs/usr/lib |
slaxemulator@6842 | 28 } |
slaxemulator@6842 | 29 |