blob: d721d66cc6c7ca978986bf1a58b883c3c095e3b0 (
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
35
36
37
38
39
40
41
42
|
SUMMARY = "a Java wrapper including a basic JDBC driver for SQLite"
DESCRIPTION = "\
This is a Java wrapper including a basic JDBC driver for the SQLite 2/3 \
database engine. It is designed using JNI to interface to the SQLite API. \
That API is wrapped by methods in the SQLite.Database class."
LICENSE = "BSD"
SECTION = "application"
PR = "r0"
SRC_URI = " \
http://www.ch-werner.de/javasqlite/${BPN}-${PV}.tar.gz \
file://0001-fix-errors-during-cross-compile.patch \
"
LIC_FILES_CHKSUM = "file://license.terms;md5=3da0e50feac5f64f08184584a8cad58a"
inherit autotools-brokensep
DEPENDS += "sqlite3 sqlite3-native icedtea7-native"
RDEPENDS_${PN} += "sqlite3"
FILES_${PN} +="/usr/share"
PARALLEL_MAKE = "-j 1"
SRC_URI[md5sum] = "242e384c1cd863d6996a35cf8c1c1e97"
SRC_URI[sha256sum] = "b6b26e2c1a2174f5525d904eb3ff698c3f7089f0d4b4c84cf6121da08c8d801f"
EXTRA_OECONF = " \
--with-sqlite3=${STAGING_DIR_NATIVE}/usr \
--with-sqlite3-target=${STAGING_DIR_TARGET}/usr \
--with-jdk=${STAGING_DIR_NATIVE}/usr/lib/jvm/icedtea7-native/ \
"
EXTRA_OEMAKE = "DESTDIR=${D}"
# This dev package contains an '.so' file used for JNI development
INSANE_SKIP_${PN}-dev = "dev-elf"
do_configure_append (){
cp ${S}/*-libtool ${S}/libtool
}
|