# SliTaz package receipt.

PACKAGE="ftjam"
VERSION="2.5.3rc2"
CATEGORY="development"
MAINTAINER="jozee@slitaz.org"
SHORT_DESC=="FT Jam - an enhanced version of the Jam build tool"
WEB_SITE="http://freetype.org/jam/"
PROVIDE="jam"
TARBALL="$PACKAGE-$VERSION.tar.bz2"
WGET_URL="http://david.freetype.org/jam/$TARBALL"

DEPENDS="glibc-base"
BUILD_DEPENDS="bison"

# Rules to configure and make the package.
compile_rules() {
	cd $src
	./configure --prefix=/usr $CONFIGURE_ARGS &&
	make &&
	make DESTDIR=$DESTDIR install 
}
	
# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr
	cp -a $_pkg/usr/bin $fs/usr
	
}