# SliTaz package receipt.

PACKAGE="sc"
VERSION="7.16"
CATEGORY="office"
SHORT_DESC="Spreadsheet calculator."
MAINTAINER="paul@slitaz.org"
DEPENDS="ncurses"
BUILD_DEPENDS="ncurses-dev bison m4"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WEB_SITE="http://www.ibiblio.org/pub/Linux/apps/financial/spreadsheet/"
WGET_URL="http://www.ibiblio.org/pub/Linux/apps/financial/spreadsheet/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	patch -p1 < $stuff/7.16.patch || return 1
	make
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/bin

	for i in sc psc scqref; do
	cp -a $src/$i $fs/usr/bin
	done
}