blob: ff2eb5f49e733a1c2220e97db4e6d49a4f1c78ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "JDT Core Batch Compiler"
HOMEPAGE = "http://www.eclipse.org/"
PRIORITY = "optional"
SECTION = "devel"
LICENSE = "EPL"
PR = "r0"
inherit native
SRC_URI = "http://mirrors.ibiblio.org/pub/mirrors/eclipse/eclipse/downloads/drops/R-3.3-200706251500/ecj.jar \
file://ecj.sh"
do_stage() {
install -d ${STAGING_BINDIR_NATIVE}
install -m 755 ${S}/../ecj.jar ${STAGING_BINDIR_NATIVE}
install -m 755 ${S}/../ecj.sh ${STAGING_BINDIR_NATIVE}/ecj
}
|