wok annotate galculator/receipt @ rev 518

Add: hardinfo (System info) + galculator
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 08 20:37:25 2008 +0200 (2008-04-08)
parents
children 61bc01878920
rev   line source
pankso@518 1 # SliTaz package receipt.
pankso@518 2
pankso@518 3 PACKAGE="galculator"
pankso@518 4 VERSION="1.3.1"
pankso@518 5 CATEGORY="system-tools"
pankso@518 6 SHORT_DESC="Graphical scientific calculator."
pankso@518 7 MAINTAINER="pankso@slitaz.org"
pankso@518 8 DEPENDS="gtk+ libglade"
pankso@518 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@518 10 WEB_SITE="http://galculator.sourceforge.net/"
pankso@518 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@518 12
pankso@518 13 # Rules to configure and make the package.
pankso@518 14 compile_rules()
pankso@518 15 {
pankso@518 16 cd $src
pankso@518 17 ./configure \
pankso@518 18 --prefix=/usr \
pankso@518 19 $CONFIGURE_ARGS
pankso@518 20 make
pankso@518 21 make DESTDIR=$PWD/_pkg install
pankso@518 22 }
pankso@518 23
pankso@518 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@518 25 genpkg_rules()
pankso@518 26 {
pankso@518 27 mkdir -p $fs/usr/share
pankso@518 28 cp -a $_pkg/usr/bin $fs/usr
pankso@518 29 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
pankso@518 30 }
pankso@518 31