wok view ftjam/receipt @ rev 19156
Add: Unetbootin 625 (again)
author | Leonardo Laporte <hackdorte@sapo.pt> |
---|---|
date | Wed May 25 12:16:11 2016 -0300 (2016-05-25) |
parents | 1d1e623d75eb |
children | 544e47246b33 |
line source
1 # SliTaz package receipt.
3 PACKAGE="ftjam"
4 VERSION="2.5.3rc2"
5 CATEGORY="development"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="BSD"
8 SHORT_DESC=="FT Jam - an enhanced version of the Jam build tool"
9 WEB_SITE="http://freetype.org/jam/"
10 PROVIDE="jam"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="http://david.freetype.org/jam/$TARBALL"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="bison"
17 # Rules to configure and make the package.
18 compile_rules() {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
31 }