blob: 2450a7e01f7be3b480997274c87d73b4e5be685c (
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
32
33
34
|
DESCRIPTION = "Flexible layout classes for Swing and SWT"
LICENSE = "BSD"
AUTHOR = "Mikael Grev"
HOMEPAGE = "http://www.migcalendar.com/miglayout"
SRC_URI = "http://www.migcalendar.com/${PN}/versions/${P}.zip"
S = "${WORKDIR}"
inherit java-library
DEPENDS = "unzip-native fastjar-native classpath swt3.4-gtk"
do_unpackpost() {
find -name "*.jar" -exec rm {} \;
mkdir sources
unzip miglayout-src.zip -d sources
}
addtask unpackpost after do_unpack before do_patch
do_compile() {
oe_makeclasspath cp -s swt
javac \
-source 5.0 -sourcepath sources -cp $cp \
-d build \
`find sources -name "*.java" -and -not -wholename "*demo*"` \
fastjar -C build -c -f ${JARFILENAME} .
}
|