diff options
Diffstat (limited to 'recipes/xmlpull/xmlpull_1.1.3.4c.bb')
-rw-r--r-- | recipes/xmlpull/xmlpull_1.1.3.4c.bb | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/recipes/xmlpull/xmlpull_1.1.3.4c.bb b/recipes/xmlpull/xmlpull_1.1.3.4c.bb new file mode 100644 index 0000000000..1ba09f79b6 --- /dev/null +++ b/recipes/xmlpull/xmlpull_1.1.3.4c.bb @@ -0,0 +1,35 @@ +DESCRIPTION = "XML pull parser API" +HOMEPAGE = "http://www.xmlpull.org" +PRIORITY = "optional" +SECTION = "libs" +LICENSE = "public domain" +PR = "r1" + +inherit java-library + +S = "${WORKDIR}/${PN}_1_1_3_4c" + +JAR = "${PN}-${PV}.jar" + +SRC_URI = "\ + http://xmlpull.org/v1/download/xmlpull_1_1_3_4c_src.tgz \ + file://makefile.patch;patch=1 \ + " + +do_compile() { + oe_runmake -C src/java/api \ + JAVAC_FLAGS="-sourcepath ." \ + JAR="oefatal \"No jar invocation expected here.\"" \ + + oe_runmake -C src/java/api \ + JAVAC="oefatal \"No Java compilation expected here.\"" \ + jar +} + +do_stage() { + oe_jarinstall -s ${S}/src/java/api/${JAR} ${PN}.jar +} + +do_install() { + oe_jarinstall src/java/api/${JAR} ${PN}.jar +} |