wok view jbigkit/receipt @ rev 15601

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Dec 05 20:23:08 2013 +0000 (2013-12-05)
parents 841bbd4ca588
children 0b50bcb60588
line source
1 # SliTaz package receipt.
3 PACKAGE="jbigkit"
4 VERSION="2.0"
5 CATEGORY="development"
6 SHORT_DESC="highly effective data compression algorithm for bi-level high-resolution images."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cl.cam.ac.uk/~mgk25/jbigkit/"
11 WGET_URL="http://www.cl.cam.ac.uk/~mgk25/download//$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 mv $PACKAGE $src 2> /dev/null
17 cd $src
18 make
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib $fs/usr/include
25 cp -a $src/libjbig/*.h $fs/usr/include
26 cp -a $src/libjbig/*.a $fs/usr/lib
27 }