wok view jbig2dec/receipt @ rev 15100

weechat: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 14 12:26:59 2013 +0000 (2013-08-14)
parents 6029f8a7291a
children d6b99c62ef00
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"
13 DEPENDS="glibc-base"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }