# SliTaz package receipt.

PACKAGE="barcode"
VERSION="0.98"
CATEGORY="utilities"
SHORT_DESC="barcode generator"
MAINTAINER="devl547@gmail.com"
TARBALL="$PACKAGE-$VERSION.tar.gz"
WEB_SITE="http://www.gnu.org/software/barcode/"
WGET_URL="ftp://ftp.gnu.org/gnu/$PACKAGE/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	./configure $CONFIGURE_ARGS &&
	make &&
	make prefix=$DESTDIR install
}

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