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"
|
pascal@15593
|
7 LICENSE="BSD"
|
jozee@4537
|
8 SHORT_DESC=="FT Jam - an enhanced version of the Jam build tool"
|
jozee@4537
|
9 WEB_SITE="http://freetype.org/jam/"
|
jozee@4537
|
10 PROVIDE="jam"
|
jozee@4537
|
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
|
jozee@4537
|
12 WGET_URL="http://david.freetype.org/jam/$TARBALL"
|
jozee@4537
|
13
|
slaxemulator@10329
|
14 DEPENDS="glibc-base"
|
slaxemulator@10329
|
15 BUILD_DEPENDS="bison"
|
slaxemulator@10329
|
16
|
jozee@4537
|
17 # Rules to configure and make the package.
|
jozee@4537
|
18 compile_rules() {
|
slaxemulator@10329
|
19 cd $src
|
slaxemulator@10329
|
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
|
slaxemulator@10329
|
21 make &&
|
slaxemulator@10329
|
22 make DESTDIR=$DESTDIR install
|
jozee@4537
|
23 }
|
jozee@4537
|
24
|
jozee@4537
|
25 # Rules to gen a SliTaz package suitable for Tazpkg.
|
jozee@4537
|
26 genpkg_rules()
|
jozee@4537
|
27 {
|
jozee@4537
|
28 mkdir -p $fs/usr
|
pascal@15593
|
29 cp -a $install/usr/bin $fs/usr
|
jozee@4537
|
30
|
jozee@4537
|
31 }
|