wok view units/receipt @ rev 6424

Added patch to tiff to fix CVE-2009-2285 bug.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Sep 27 06:21:26 2010 +0000 (2010-09-27)
parents 449135e8deae
children 35a258986c98
line source
1 # SliTaz package receipt.
3 PACKAGE="units"
4 VERSION="1.87"
5 CATEGORY="utilities"
6 SHORT_DESC="Units converter."
7 MAINTAINER="paul@slitaz.org"
8 DEPENDS="readline ncurses"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org"
11 WGET_URL="http://ftp.gnu.org/gnu/units/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share
29 cp -a $_pkg/usr/bin $fs/usr
30 cp $_pkg/usr/share/units.dat $fs/usr/share
31 }