wok-4.x view ftjam/receipt @ rev 12055
xsane: removed cp for desktop file
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Wed Mar 07 19:54:02 2012 -0800 (2012-03-07) |
parents | c29bdd2b1059 |
children |
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 }