wok view jikes/receipt @ rev 4941

add/improve TAGS j* receipts
author Rohit Joshi <jozee@slitaz.org>
date Tue Feb 16 15:44:25 2010 +0000 (2010-02-16)
parents 153b06465dc8
children 8d3f3ded1725
line source
1 # SliTaz package receipt.
3 PACKAGE="jikes"
4 VERSION="1.22"
5 CATEGORY="development"
6 SHORT_DESC="An Open Source compiler for Java."
7 MAINTAINER="rcx@zoominternet.net"
8 DEPENDS=""
9 BUILD_DEPENDS="slitaz-toolchain"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://jikes.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="java"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }