0
0
Fork 0
haikuports/dev-java/jamvm/jamvm-1.5.4.recipe

53 lines
1.2 KiB
Bash

SUMMARY="A very small Java Virtual Machine"
DESCRIPTION="JamVM is a new Java Virtual Machine which conforms to the JVM \
specification version 2 (blue book). In comparison to most other VM's (free \
and commercial) it is extremely small."
HOMEPAGE="http://jamvm.sourceforge.net/"
COPYRIGHT="2003-2010 Robert Lougher"
LICENSE="GNU GPL v2"
REVISION="1"
SOURCE_URI="http://sourceforge.net/projects/jamvm/files/jamvm/JamVM%20$portVersion/jamvm-$portVersion.tar.gz"
CHECKSUM_SHA256="7865693698bc4322cabe1014a4b7ebdec1bc1daf45f1a4457b6e908a4446b124"
PATCHES="jamvm-$portVersion.patchset"
ARCHITECTURES="all !x86_gcc2"
SECONDARY_ARCHITECTURES="x86"
PROVIDES="
jamvm$secondaryArchSuffix = $portVersion
cmd:jamvm$secondaryArchSuffix = $portVersion
devel:libjvm$secondaryArchSuffix
lib:libjvm$secondaryArchSuffix
"
REQUIRES="
haiku$secondaryArchSuffix
lib:libz$secondaryArchSuffix
"
BUILD_REQUIRES="
haiku${secondaryArchSuffix}_devel
devel:libz$secondaryArchSuffix >= 1.2.8
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoreconf
cmd:find
cmd:gcc$secondaryArchSuffix
cmd:libtool
cmd:make
"
BUILD()
{
autoreconf -fi
runConfigure ./configure \
--with-classpath-install-dir=$prefix
make
}
INSTALL()
{
make install
prepareInstalledDevelLib libjvm
}