wok view jpegtran/receipt @ rev 17853

epdfview: fix rendering of embedded images

used:
http://www.linuxfromscratch.org/patches/blfs/svn/epdfview-0.1.8-fixes-2.patch
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Tue Mar 24 22:35:58 2015 +0100 (2015-03-24)
parents a3fafab03b51
children 1a1ef232e14d
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 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://jpegclub.org/"
11 WGET_URL="${WEB_SITE}jpegcrop.tar.gz"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src/jpeg-9a
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }