wok-6.x annotate jbigkit/receipt @ rev 10351
glibc: Check for gawk in compile_rules. Not cook_tmp_toolchain since thats for tazwok.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun May 22 16:34:20 2011 +0000 (2011-05-22) |
parents | |
children | 23c3aed67cd9 |
rev | line source |
---|---|
pascal@4559 | 1 # SliTaz package receipt. |
pascal@4559 | 2 |
pascal@4559 | 3 PACKAGE="jbigkit" |
pascal@4559 | 4 VERSION="2.0" |
pascal@4559 | 5 CATEGORY="development" |
pascal@4559 | 6 SHORT_DESC="highly effective data compression algorithm for bi-level high-resolution images." |
pascal@4559 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@4559 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@4559 | 9 WEB_SITE="http://www.cl.cam.ac.uk/~mgk25/jbigkit/" |
pascal@4559 | 10 WGET_URL="http://www.cl.cam.ac.uk/~mgk25/download//$TARBALL" |
pascal@4559 | 11 |
pascal@4559 | 12 # Rules to configure and make the package. |
pascal@4559 | 13 compile_rules() |
pascal@4559 | 14 { |
pascal@4559 | 15 mv $PACKAGE $src 2> /dev/null |
pascal@4559 | 16 cd $src |
pascal@4559 | 17 make |
pascal@4559 | 18 } |
pascal@4559 | 19 |
pascal@4559 | 20 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@4559 | 21 genpkg_rules() |
pascal@4559 | 22 { |
pascal@4559 | 23 mkdir -p $fs/usr/lib $fs/usr/include |
pascal@4559 | 24 cp -a $src/libjbig/*.h $fs/usr/include |
pascal@4559 | 25 cp -a $src/libjbig/*.a $fs/usr/lib |
pascal@4559 | 26 } |
pascal@4559 | 27 |