wok view jpeg/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents 75c64a236392
children 124c3a7da04f
line source
1 # SliTaz package receipt.
3 PACKAGE="jpeg"
4 VERSION="8c"
5 CATEGORY="x-window"
6 SHORT_DESC="JPEG image programs."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="http://www.ijg.org/"
10 TARBALL="jpegsrc.v${VERSION}.tar.gz"
11 WGET_URL="http://www.ijg.org/files/$TARBALL"
12 TAGS="jpeg jpg"
13 HOST_ARCH="i486 arm"
15 DEPENDS="libjpeg"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-shared \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 # In libjpeg package
35 #cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }