wok view jpeg/receipt @ rev 5995

jpeg: Upgrade to 8b
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 14:18:40 2010 +0000 (2010-08-14)
parents 4466fa74bc06
children 57b2ba11e487
line source
1 # SliTaz package receipt.
3 PACKAGE="jpeg"
4 VERSION="8b"
5 CATEGORY="x-window"
6 SHORT_DESC="JPEG image programs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libjpeg"
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --enable-shared --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 }