wok view libjpeg62/receipt @ rev 12405

Add compiz meta package (Compiz/LXDE work fine)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 20 18:01:38 2012 +0200 (2012-04-20)
parents a1c1d35d9f92
children de49f29b101e
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 }