blob: 9538861930da2ba7370d88b4064b1fe9c74a6dea (
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
|
DESCRIPTION = "Java library for manipulating various file formats based upon Microsoft's OLE 2 Compound Document"
LICENSE = "AL2.0"
AUTHOR = "Apache Software Foundation"
SRC_URI = "http://www.apache.org/dist/jakarta/poi/release/src/${BPN}-src-${PV}-FINAL-20070503.tar.gz"
S = "${WORKDIR}/${BPN}-3.0-rc4"
inherit java-library
DEPENDS = "fastjar-native commons-collections3 commons-logging commons-lang commons-beanutils log4j1.2 xalan-j"
do_compile() {
mkdir -p build
oe_makeclasspath cp -s commons-collections3 commons-logging commons-lang commons-beanutils log4j-1.2 xalan2
javac -sourcepath src/java -cp $cp -d build \
`find src/java -name \*.java`
(cd src/java && find . -name "*.properties" -exec cp {} ../../build/{} \;)
fastjar -C build -c -f ${JARFILENAME} .
}
|