wok view extrema/receipt @ rev 5275

abiword: improve templates
author Rohit Joshi <jozee@slitaz.org>
date Thu Apr 15 10:26:03 2010 -0400 (2010-04-15)
parents 31c985a0bd3d
children d3e28de5e48e
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 wxWidgets xorg-libXxf86vm"
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 }