wok view libjpeg62/receipt @ rev 11165

Up: geany-plugins to 0.21.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Nov 02 07:02:38 2011 +0000 (2011-11-02)
parents 9a2307d0ba65
children b7319995b37e
line source
1 PACKAGE="libjpeg62"
2 VERSION="6b"
3 CATEGORY="x-window"
4 SHORT_DESC="JPEG shared libs."
5 MAINTAINER="paul@slitaz.org"
6 WEB_SITE="http://www.ijg.org/"
7 TARBALL="libjpeg6b_6b.orig.tar.gz"
8 WGET_URL="ftp://ftp.debian.org/debian/pool/main/libj/libjpeg6b/$TARBALL"
9 TAGS="jpeg jpg"
11 # Rules to configure and make the package.
12 compile_rules()
13 {
14 cd $src
15 ./configure --enable-shared --prefix=/usr \
16 --mandir=/usr/share/man $CONFIGURE_ARGS
17 make
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/lib
24 cp -a $src/.libs/*.so.62* $fs/usr/lib
25 }