wok-current view jpeg/receipt @ rev 11351
get-flash-plugin: Add support to use /etc/slitaz/slitaz.conf file if it exist. If $INSTALLED doesn't exist, assign it to /var/lib/tazpkg/installed.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Tue Nov 29 11:53:47 2011 +0000 (2011-11-29) |
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 }