wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="jpeg"
4 VERSION="8b"
5 CATEGORY="x-window"
6 SHORT_DESC="JPEG image programs."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="libjpeg"
9 WEB_SITE="http://www.ijg.org/"
10 TARBALL="jpegsrc.v${VERSION}.tar.gz"
11 WGET_URL="http://www.ijg.org/files/$TARBALL"
12 TAGS="jpeg jpg"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --enable-shared --prefix=/usr \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 }