#Packager: George Vlahavas <vlahavas~at~gmail~dot~com>

pkgname=ftjam
pkgver=2.5.3rc2
pkgrel=1gv
source=(http://david.freetype.org/jam/ftjam-$pkgver.tar.bz2)
docs=("readme*" "install" "copying" "changes" "authors" "news" "todo" "relnotes")
url=http://freetype.org/jam

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"ftjam (an enhanced version of the Jam build tool)"
"Jam is a small open-source build tool that can be used as a"
"replacement for Make. Even though Jam is a lot simpler to use than"
"Make, it is far more powerful and easy to master. It already works on"
"a large variety of platforms (Unix, Windows, OS/2, VMS, MacOS, BeOS,"
"etc.), it is trivial to port, and its design is sufficiently clear to"
"allow any average programmer to extend it with advanced features at"
"will."
)


build() {
	cd $startdir/src/$pkgname-$pkgver
	./configure --prefix=/usr --libdir=/usr/lib${LIBDIRSUFFIX} --localstatedir=/var --sysconfdir=/etc --build=$arch-slackware-linux
	make || return 1
	make install DESTDIR=$startdir/pkg
}