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