wok-current annotate ftjam/receipt @ rev 9682
lzma: needs $stuff.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 06 21:16:41 2011 +0000 (2011-05-06) |
parents | daeced6e66a8 |
children | 1d1e623d75eb |
rev | line source |
---|---|
jozee@4537 | 1 # SliTaz package receipt. |
jozee@4537 | 2 |
jozee@4537 | 3 PACKAGE="ftjam" |
jozee@4537 | 4 VERSION="2.5.3rc2" |
jozee@4537 | 5 CATEGORY="development" |
jozee@4537 | 6 MAINTAINER="jozee@slitaz.org" |
jozee@4537 | 7 SHORT_DESC=="FT Jam - an enhanced version of the Jam build tool" |
jozee@4537 | 8 WEB_SITE="http://freetype.org/jam/" |
jozee@4537 | 9 DEPENDS="glibc-base" |
slaxemulator@8603 | 10 BUILD_DEPENDS="bison" |
jozee@4537 | 11 PROVIDE="jam" |
jozee@4537 | 12 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
jozee@4537 | 13 WGET_URL="http://david.freetype.org/jam/$TARBALL" |
jozee@4537 | 14 |
jozee@4537 | 15 # Rules to configure and make the package. |
jozee@4537 | 16 |
jozee@4537 | 17 compile_rules() { |
jozee@4537 | 18 cd $src |
jozee@4537 | 19 ./configure --prefix=/usr |
jozee@4537 | 20 make |
jozee@4537 | 21 make DESTDIR=$PWD/_pkg install |
jozee@4537 | 22 } |
jozee@4537 | 23 |
jozee@4537 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
jozee@4537 | 25 genpkg_rules() |
jozee@4537 | 26 { |
jozee@4537 | 27 mkdir -p $fs/usr |
jozee@4537 | 28 cp -a $_pkg/usr/bin $fs/usr |
jozee@4537 | 29 |
jozee@4537 | 30 } |