wok annotate libjpeg62/receipt @ rev 7352

Add libjpeg62
author Paul Issott <paul@slitaz.org>
date Mon Nov 22 19:07:33 2010 +0000 (2010-11-22)
parents
children 9a2307d0ba65
rev   line source
paul@7352 1 PACKAGE="libjpeg62"
paul@7352 2 VERSION="6b"
paul@7352 3 CATEGORY="x-window"
paul@7352 4 SHORT_DESC="JPEG shared libs."
paul@7352 5 MAINTAINER="paul@slitaz.org"
paul@7352 6 WEB_SITE="http://www.ijg.org/"
paul@7352 7 TARBALL="jpegsrc.v6b.tar.gz"
paul@7352 8 WGET_URL="http://www.ijg.org/files/$TARBALL"
paul@7352 9 TAGS="jpeg jpg"
paul@7352 10
paul@7352 11 # Rules to configure and make the package.
paul@7352 12 compile_rules()
paul@7352 13 {
paul@7352 14 src=jpeg-$VERSION
paul@7352 15 cd $src
paul@7352 16 ./configure --enable-shared --prefix=/usr \
paul@7352 17 --mandir=/usr/share/man $CONFIGURE_ARGS
paul@7352 18 make
paul@7352 19 }
paul@7352 20
paul@7352 21 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@7352 22 genpkg_rules()
paul@7352 23 {
paul@7352 24 src=jpeg-$VERSION
paul@7352 25 mkdir -p $fs/usr/lib
paul@7352 26 cp -a $src/.libs/*.so.62* $fs/usr/lib
paul@7352 27 }