wok view jbig2dec/receipt @ rev 17521

busybox: 2015
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jan 17 12:02:13 2015 +0100 (2015-01-17)
parents 2b9f96603415
children ec67a3ebb1e2
line source
1 # SliTaz package receipt.
3 PACKAGE="jbig2dec"
4 VERSION="0.11"
5 CATEGORY="development"
6 SHORT_DESC="Decoder implementation of the JBIG2 image compressiong format"
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://jbig2dec.sourceforge.net/"
11 WGET_URL="http://ghostscript.com/~giles/jbig2/$PACKAGE/$TARBALL"
12 HOST_ARCH="i486 arm"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 ./configure \
18 $CONFIGURE_ARGS &&
19 make && make install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/bin $fs/usr
27 cp -a $install/usr/lib/*.so* $fs/usr/lib
28 }