wok annotate jikes/receipt @ rev 21552
updated nsd (4.0.1 -> 4.1.27)
author | Hans-G?nter Theisgen |
---|---|
date | Wed May 08 15:12:37 2019 +0100 (2019-05-08) |
parents | 8d3f3ded1725 |
children | ba7cbdb5749c |
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@15601 | 8 LICENSE="EPL" |
rcx@3467 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
rcx@3467 | 10 WEB_SITE="http://jikes.sourceforge.net/" |
rcx@3467 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
jozee@4941 | 12 TAGS="java" |
rcx@3467 | 13 |
pascal@15601 | 14 DEPENDS="gcc-lib-base" |
pascal@15601 | 15 BUILD_DEPENDS="slitaz-toolchain" |
pascal@15601 | 16 |
rcx@3467 | 17 # Rules to configure and make the package. |
rcx@3467 | 18 compile_rules() |
rcx@3467 | 19 { |
rcx@3467 | 20 cd $src |
rcx@3467 | 21 ./configure \ |
rcx@3467 | 22 --prefix=/usr \ |
rcx@3467 | 23 --infodir=/usr/share/info \ |
rcx@3467 | 24 --mandir=/usr/share/man \ |
rcx@3467 | 25 $CONFIGURE_ARGS && |
rcx@3467 | 26 make && |
pascal@15601 | 27 make DESTDIR=$DESTDIR install |
rcx@3467 | 28 } |
rcx@3467 | 29 |
rcx@3467 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
rcx@3467 | 31 genpkg_rules() |
rcx@3467 | 32 { |
rcx@3467 | 33 mkdir -p $fs/usr |
pascal@15601 | 34 cp -a $install/usr/bin $fs/usr |
rcx@3467 | 35 } |
rcx@3467 | 36 |