wok-next annotate jikes/receipt @ rev 7106
Up: goffice to 0.8.11.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Wed Nov 03 06:25:47 2010 +0000 (2010-11-03) |
parents | 4466fa74bc06 |
children | 23c3aed67cd9 |
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" |
pascal@5002 | 8 DEPENDS="gcc-lib-base" |
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 |