diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-03-04 16:48:51 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-03-04 16:48:51 +0000 |
commit | 624b3fda498b62df636c95ebe55056975fc441de (patch) | |
tree | 96ba159ad2617c0835b418df9d8200acf3293db9 /packages | |
parent | ba69123b245d6244b756a07f7118bfb11acb47f0 (diff) | |
parent | 0a4271a1d28fa9f7f40f30771e3662a6045a28ea (diff) |
merge of '0f180def591ca0179051e4ff04c293f2605e85e6'
and '189c4dd243d8f199a676c20a4429d103798ca95d'
Diffstat (limited to 'packages')
-rw-r--r-- | packages/woodstox/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/woodstox/woodstox2_2.0.6.bb | 25 |
2 files changed, 25 insertions, 0 deletions
diff --git a/packages/woodstox/.mtn2git_empty b/packages/woodstox/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/woodstox/.mtn2git_empty diff --git a/packages/woodstox/woodstox2_2.0.6.bb b/packages/woodstox/woodstox2_2.0.6.bb new file mode 100644 index 0000000000..390c4ff3f0 --- /dev/null +++ b/packages/woodstox/woodstox2_2.0.6.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "High-performance XML processor." +LICENSE = "AL2.0 LGPL2.1" + +AUTHOR = "Codehaus" +HOMEPAGE = "http://woodstox.codehaus.org" + +SRC_URI = "http://woodstox.codehaus.org/2.0.6/wstx-src.tar.gz" + +S = "${WORKDIR}" + +inherit java-library + +DEPENDS = "fastjar-native" + +do_compile() { + mkdir -p build/META-INF/services + + javac -nowarn -sourcepath src/java -d build \ + `find src/java/org -name "*.java"` \ + `find src/java/com -name "*.java"` + + cp -r src/resources/* build/META-INF/services + + fastjar -C build -c -f ${JARFILENAME} . +} |