wok annotate jpeg/receipt @ rev 15874

Add acme
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 03 11:54:56 2014 +0000 (2014-02-03)
parents fdef344d6bef
children d6bbc99418ee
rev   line source
pankso@23 1 # SliTaz package receipt.
pankso@23 2
pankso@23 3 PACKAGE="jpeg"
slaxemulator@12376 4 VERSION="8c"
pankso@23 5 CATEGORY="x-window"
rcx@5995 6 SHORT_DESC="JPEG image programs."
pankso@23 7 MAINTAINER="pankso@slitaz.org"
pascal@15600 8 LICENSE="MIT"
pankso@23 9 WEB_SITE="http://www.ijg.org/"
rcx@5995 10 TARBALL="jpegsrc.v${VERSION}.tar.gz"
pankso@23 11 WGET_URL="http://www.ijg.org/files/$TARBALL"
jozee@4941 12 TAGS="jpeg jpg"
pankso@23 13
pascal@15600 14 DEPENDS="libjpeg"
pascal@15600 15
pankso@23 16 # Rules to configure and make the package.
pankso@23 17 compile_rules()
pankso@23 18 {
pankso@23 19 cd $src
pankso@23 20 ./configure --enable-shared --prefix=/usr \
rcx@5995 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
rcx@5995 22 make &&
slaxemulator@12376 23 make DESTDIR=$DESTDIR install
pankso@23 24 }
pankso@23 25
pankso@23 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@23 27 genpkg_rules()
pankso@23 28 {
pascal@6046 29 mkdir -p $fs/usr
pascal@15600 30 cp -a $install/usr/bin $fs/usr
pankso@23 31 }