# SliTaz package receipt.

PACKAGE="bc"
VERSION="1.06"
CATEGORY="utilities"
SHORT_DESC="Bc is a cmdline calculator."
MAINTAINER="name@example.org"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WEB_SITE="http://www.gnu.org/software/bc/"
WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
    cd $src
    ./configure \
    	--prefix=/usr \
    	--infodir=/usr/share/info \
    	--mandir=/usr/share/man \
    	$CONFIGURE_ARGS &&
    make && make DESTDIR=$PWD/_pkg install
}

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