wok annotate ftjam/receipt @ rev 5053

fix typos: libgphoto2
author Rohit Joshi <jozee@slitaz.org>
date Sat Mar 06 18:51:17 2010 +0000 (2010-03-06)
parents
children c29bdd2b1059
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"
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
jozee@4537 14 # Rules to configure and make the package.
jozee@4537 15
jozee@4537 16 compile_rules() {
jozee@4537 17 cd $src
jozee@4537 18 ./configure --prefix=/usr
jozee@4537 19 make
jozee@4537 20 make DESTDIR=$PWD/_pkg install
jozee@4537 21 }
jozee@4537 22
jozee@4537 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4537 24 genpkg_rules()
jozee@4537 25 {
jozee@4537 26 mkdir -p $fs/usr
jozee@4537 27 cp -a $_pkg/usr/bin $fs/usr
jozee@4537 28
jozee@4537 29 }