wok view jpegtran/receipt @ rev 23010

updated libav (0.6.1 -> 0.6.6)
author Hans-G?nter Theisgen
date Tue Mar 03 08:54:13 2020 +0100 (2020-03-03)
parents 1a1ef232e14d
children ad8b9ff412d2
line source
1 # SliTaz package receipt.
3 PACKAGE="jpegtran"
4 VERSION="9d"
5 CATEGORY="graphics"
6 SHORT_DESC="Convert jpeg files to progressive jpeg files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://jpegclub.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}jpegcrop.tar.gz" # no version here!
14 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src/jpeg*
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }