wok-6.x view ftjam/receipt @ rev 12752
Up erlang (R15B01)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri May 11 13:17:29 2012 +0200 (2012-05-11) |
parents | c29bdd2b1059 |
children | 3b4e4318134e |
line source
1 # SliTaz package receipt.
3 PACKAGE="ftjam"
4 VERSION="2.5.3rc2"
5 CATEGORY="development"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC=="FT Jam - an enhanced version of the Jam build tool"
8 WEB_SITE="http://freetype.org/jam/"
9 PROVIDE="jam"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WGET_URL="http://david.freetype.org/jam/$TARBALL"
13 DEPENDS="glibc-base"
14 BUILD_DEPENDS="bison"
16 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
30 }