diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-11-25 14:49:51 +0100 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-11-25 14:49:51 +0100 |
commit | e25498c0506d39145725647b3d7397bccd2e207d (patch) | |
tree | ed85ff9da88decf7361536a2a97280f0891e2c30 /packages/antlr/antlr-native_2.7.7.bb | |
parent | 6b6df778d84f2c2fb0f271b13d81502edfaf3afb (diff) |
Replace non-working antlr recipe with working ones from Jalimo repo.
antlr 2.7.7: New recipe.
antlr-native 2.7.7: New recipe.
Diffstat (limited to 'packages/antlr/antlr-native_2.7.7.bb')
-rw-r--r-- | packages/antlr/antlr-native_2.7.7.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/antlr/antlr-native_2.7.7.bb b/packages/antlr/antlr-native_2.7.7.bb new file mode 100644 index 0000000000..bd95ce7a7c --- /dev/null +++ b/packages/antlr/antlr-native_2.7.7.bb @@ -0,0 +1,17 @@ +require antlr_${PV}.bb + +SRC_URI += "file://runantlr" + +inherit native + +do_configure() { + sed -i -e"s|@JAR_FILE@|${STAGING_DATADIR_NATIVE}/java/antlr.jar|" ${WORKDIR}/runantlr +} + +do_stage() { + java_stage + + install -d ${STAGING_BINDIR} + + install -m 0755 ${WORKDIR}/runantlr ${STAGING_BINDIR} +} |