wok view jbigkit/receipt @ rev 21822

Remove unused kernel cmdline args root=/dev/null
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 25 18:00:45 2019 +0200 (2019-08-25)
parents be4941ed944e
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="jbigkit"
4 VERSION="2.1"
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 WEB_SITE="https://www.cl.cam.ac.uk/~mgk25/jbigkit/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}download/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 make CC=${HOST_SYSTEM}-gcc
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib $fs/usr/include
27 cp -a $src/libjbig/*.h $fs/usr/include
28 cp -a $src/libjbig/*.a $fs/usr/lib
29 }