miglayout 3.0.3: New recipe.
authorRobert Schuster <thebohemian@gmx.net>
Tue, 7 Oct 2008 21:37:09 +0000 (21:37 +0000)
committerRobert Schuster <thebohemian@gmx.net>
Tue, 7 Oct 2008 21:37:09 +0000 (21:37 +0000)
packages/miglayout/miglayout_3.0.3.bb [new file with mode: 0644]

diff --git a/packages/miglayout/miglayout_3.0.3.bb b/packages/miglayout/miglayout_3.0.3.bb
new file mode 100644 (file)
index 0000000..2450a7e
--- /dev/null
@@ -0,0 +1,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} .
+}
+