wok view extrema/receipt @ rev 4938

add/improve TAGS i* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 14:37:58 2010 +0000 (2010-02-16)
parents 4ed64ce2d5e2
children 6e90579538d6
line source
1 # SliTaz package receipt.
3 PACKAGE="extrema"
4 VERSION="4.4.0"
5 CATEGORY="office"
6 SHORT_DESC="Powerful visualization and data analysis tool."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 DEPENDS="gtk+-dev"
10 BUILD_DEPENDS="gtk+-dev"
11 WEB_SITE="http://exsitewebware.com/extrema/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="data visualization analysis"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --enable-shared \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib $fs/usr/share
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/share/extrema $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 }