diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-07-13 16:55:58 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-07-13 16:55:58 +0000 |
commit | 0b1462e7b804d485ea30dc9d98dccb2c48f4831b (patch) | |
tree | 0fbaa216261cc00ad29f96e1ea8d0b6c1049e2c4 /packages/javasqlite/javasqlite-mkconst-native_20080130.bb | |
parent | bd40543cd6a48c75f0194819a941a81f79e67659 (diff) |
javasqlite: New recipe.
javasqlite-mkconst-native: New recipe.
Diffstat (limited to 'packages/javasqlite/javasqlite-mkconst-native_20080130.bb')
-rw-r--r-- | packages/javasqlite/javasqlite-mkconst-native_20080130.bb | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/packages/javasqlite/javasqlite-mkconst-native_20080130.bb b/packages/javasqlite/javasqlite-mkconst-native_20080130.bb new file mode 100644 index 0000000000..e6f9a8e1ae --- /dev/null +++ b/packages/javasqlite/javasqlite-mkconst-native_20080130.bb @@ -0,0 +1,52 @@ +DESCRIPTION = "mkcons program needed for javasqlite build" +HOMEPAGE = "http://www.ch-werner.de/javasqlite" +LICENSE = "BSD" + +DEPENDS = "sqlite-native sqlite3-native" + +SRC_URI = "\ + http://www.ch-werner.de/javasqlite/javasqlite-${PV}.tar.gz \ + file://build-fix.patch;patch=1" + +S = "${WORKDIR}/javasqlite-${PV}" + +inherit autotools native + +# Program names are there to fool configure checks +# because we actually do not need these. +EXTRA_OECONF = " \ + --with-sqlite-incdir=${STAGING_INCDIR} \ + --with-sqlite-libdir=${STAGING_LIBDIR} \ + --with-sqlite3-incdir=${STAGING_INCDIR} \ + --with-sqlite3-libdir=${STAGING_LIBDIR} \ + --with-jardir=${datadir_java} \ + --with-native-libdir=${libdir_jni} \ + --with-java='echo version 1.5' \ + --with-javac=true \ + --with-jar=true \ + --with-javah=true \ + --with-javadoc=true \ + " + +do_configurepre() { + sed -i -e "s|wrong-libtool|${BUILD_SYS}-libtool|" Makefile.in +} + +addtask configurepre after do_patch before do_configure + + +do_compile() { + oe_runmake native/mkconst +} + +do_install() { + : +} + +do_stage() { + install -d ${STAGING_BINDIR} + install -m 0755 native/.libs/mkconst ${STAGING_BINDIR}/javasqlite-mkconst-${PV} +} + +PACKAGES = "" + |