blob: 063525d46d27fc4f480d9b4f5e939211f842678c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
SUMMARY = "Initial Java 1.4-compatible (and not higher) compiler"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
DEPENDS = "jikes-native classpath-initial-native"
S = "${WORKDIR}"
inherit native
do_configure() {
:
}
do_compile() {
echo "#!/bin/sh" > jikes-initial
echo "${STAGING_BINDIR_NATIVE}/jikes -bootclasspath ${STAGING_DATADIR_NATIVE}/classpath-initial/glibj.zip \$@" >> jikes-initial
}
do_install() {
install -d ${D}${bindir}
install -m 0755 jikes-initial ${D}${bindir}
}
|