wok-stable annotate jikes/receipt @ rev 4575
lighttpd: fix WGET_URL
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Dec 09 20:47:04 2009 +0100 (2009-12-09) |
parents | |
children | 4466fa74bc06 |
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" |
rcx@3467 | 13 |
rcx@3467 | 14 # Rules to configure and make the package. |
rcx@3467 | 15 compile_rules() |
rcx@3467 | 16 { |
rcx@3467 | 17 cd $src |
rcx@3467 | 18 ./configure \ |
rcx@3467 | 19 --prefix=/usr \ |
rcx@3467 | 20 --infodir=/usr/share/info \ |
rcx@3467 | 21 --mandir=/usr/share/man \ |
rcx@3467 | 22 $CONFIGURE_ARGS && |
rcx@3467 | 23 make && |
rcx@3467 | 24 make DESTDIR=$PWD/_pkg install |
rcx@3467 | 25 } |
rcx@3467 | 26 |
rcx@3467 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3467 | 28 genpkg_rules() |
rcx@3467 | 29 { |
rcx@3467 | 30 mkdir -p $fs/usr |
rcx@3467 | 31 cp -a $_pkg/usr/bin $fs/usr |
rcx@3467 | 32 } |
rcx@3467 | 33 |