wok-6.x annotate 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 |
rev | line source |
---|---|
rcx@3467 | 1 # SliTaz package receipt. |
rcx@3467 | 2 |
rcx@3467 | 3 PACKAGE="jikes" |
rcx@3467 | 4 VERSION="1.22" |
rcx@3467 | 5 CATEGORY="development" |
rcx@3467 | 6 SHORT_DESC="An Open Source compiler for Java." |
rcx@3467 | 7 MAINTAINER="rcx@zoominternet.net" |
rcx@3467 | 8 DEPENDS="" |
rcx@3467 | 9 BUILD_DEPENDS="slitaz-toolchain" |
rcx@3467 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
rcx@3467 | 11 WEB_SITE="http://jikes.sourceforge.net/" |
rcx@3467 | 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@4941 | 13 TAGS="java" |
rcx@3467 | 14 |
rcx@3467 | 15 # Rules to configure and make the package. |
rcx@3467 | 16 compile_rules() |
rcx@3467 | 17 { |
rcx@3467 | 18 cd $src |
rcx@3467 | 19 ./configure \ |
rcx@3467 | 20 --prefix=/usr \ |
rcx@3467 | 21 --infodir=/usr/share/info \ |
rcx@3467 | 22 --mandir=/usr/share/man \ |
rcx@3467 | 23 $CONFIGURE_ARGS && |
rcx@3467 | 24 make && |
rcx@3467 | 25 make DESTDIR=$PWD/_pkg install |
rcx@3467 | 26 } |
rcx@3467 | 27 |
rcx@3467 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3467 | 29 genpkg_rules() |
rcx@3467 | 30 { |
rcx@3467 | 31 mkdir -p $fs/usr |
rcx@3467 | 32 cp -a $_pkg/usr/bin $fs/usr |
rcx@3467 | 33 } |
rcx@3467 | 34 |