wok annotate jikes/receipt @ rev 4117

Up asterisk-sound, asterisk-sound-fr (1.4.16)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 19 23:08:58 2009 +0200 (2009-09-19)
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