wok-6.x view jpeg/receipt @ rev 10726

libtaz: Don't need to check /usr/bin/hg anymore. Best to get the tag 1.1.2 version. May need to delete the slitaz-dev-tools-1.1.2.tar.bz2 source on tank to make sure we have the tag version.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 28 20:44:37 2011 +0000 (2011-05-28)
parents b0ae2959206e
children fdef344d6bef
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
28 cp -a $_pkg/usr/bin $fs/usr
29 }