wok annotate jpeg/receipt @ rev 9215

mc, samba, perl-curses: use ncursesw instead of ncurses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 11 11:47:15 2011 +0100 (2011-03-11)
parents b0ae2959206e
children fdef344d6bef
rev   line source
pankso@23 1 # SliTaz package receipt.
pankso@23 2
pankso@23 3 PACKAGE="jpeg"
rcx@5995 4 VERSION="8b"
pankso@23 5 CATEGORY="x-window"
rcx@5995 6 SHORT_DESC="JPEG image programs."
pankso@23 7 MAINTAINER="pankso@slitaz.org"
rcx@5995 8 DEPENDS="libjpeg"
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
pankso@23 14 # Rules to configure and make the package.
pankso@23 15 compile_rules()
pankso@23 16 {
pankso@23 17 cd $src
pankso@23 18 ./configure --enable-shared --prefix=/usr \
rcx@5995 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
rcx@5995 20 make &&
rcx@5995 21 make DESTDIR=$PWD/_pkg install
pankso@23 22 }
pankso@23 23
pankso@23 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@23 25 genpkg_rules()
pankso@23 26 {
pascal@6046 27 mkdir -p $fs/usr
rcx@5995 28 cp -a $_pkg/usr/bin $fs/usr
pankso@23 29 }