blob: 0321ea65fa15247e7e8b011de63cf9727aed9b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
DESCRIPTION = "Streaming pull XML parser for java"
LICENSE = "BSD-like"
HOMEPAGE = "http://www.extreme.indiana.edu/xgws/xsoap/xpp/"
SRC_URI = "http://www.extreme.indiana.edu/xgws/xsoap/xpp/download/PullParser2/PullParser2.1.10.tgz"
S = "${WORKDIR}/PullParser${PV}"
inherit java-library
DEPENDS = "fastjar-native virtual/javac-native"
do_compile() {
if [ -d build-oe ]; then
rm -rf build-oe
fi
mkdir -p build-oe
sourcepath="src/java/drivers/jaxp11:src/java/drivers/sax2:src/java/impl/factory:src/java/impl/format:src/java/impl/node:src/java/impl/pullparser:src/java/impl/tag:src/java/intf"
findpath="${sourcepath//:/ }"
javac -sourcepath $sourcepath -d build-oe `find $findpath -name "*.java"`
mkdir -p build-oe/META-INF/services
cp src/java/drivers/jaxp11/META-INF/services/javax.xml.parsers.SAXParserFactory build-oe/META-INF/services
cp src/java/impl/factory/META-INF/services/org.gjt.xpp.XmlPullParserFactory build-oe/META-INF/services
fastjar -C build-oe -c -f ${JARFILENAME} .
}
|