PACKAGE="libjpeg62"
VERSION="6b"
CATEGORY="x-window"
SHORT_DESC="JPEG shared libs."
MAINTAINER="paul@slitaz.org"
WEB_SITE="http://www.ijg.org/"
TARBALL="libjpeg6b_6b.orig.tar.gz"
WGET_URL="ftp://ftp.debian.org/debian/pool/main/libj/libjpeg6b/$TARBALL"
TAGS="jpeg jpg"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure --enable-shared --prefix=/usr \
	--mandir=/usr/share/man $CONFIGURE_ARGS &&
	make
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $src/.libs/*.so.62* $fs/usr/lib
}