wok view jpegtran/receipt @ rev 14931

Up: eet-dev (1.7.8)
author Dominique Corbex <domcox@slitaz.org>
date Thu Aug 08 19:15:36 2013 +0200 (2013-08-08)
parents
children 23c3aed67cd9
line source
1 # SliTaz package receipt.
3 PACKAGE="jpegtran"
4 VERSION="9a"
5 CATEGORY="graphics"
6 SHORT_DESC="Convert jpeg files to progressive jpeg files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://jpegclub.org/"
10 WGET_URL="${WEB_SITE}jpegcrop.tar.gz"
12 DEPENDS=""
13 BUILD_DEPENDS=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src/jpeg-9a
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }