aboutsummaryrefslogtreecommitdiffstats
path: root/sqlite/sqlite_2.8.9.oe
blob: 1ad5139ef6e60de4e48716d9dd1dcfd0ee5d3d99 (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
DESCRIPTION="An Embeddable SQL Database Engine"
SECTION="libs"
PRIORITY="optional"
RDEPENDS="libc6 readline libncurses5"
DEPENDS=virtual/libc base/readline base/ncurses

SRC_URI = http://www.hwaci.com/sw/${PN}/${P}.tar.gz \
          file://${FILESDIR}/crosscompile.patch;patch=1

S = ${WORKDIR}/${PN}

inherit autotools libtool

EXTRA_OECONF = '--without-tcl --enable-static --enable-shared'
export config_BUILD_CC=${BUILD_CC}
export config_BUILD_CFLAGS=${BUILD_CFLAGS}
export config_TARGET_CC=${CC}
export config_TARGET_LINK=${CCLD}
export config_TARGET_CFLAGS=${CFLAGS}

do_compile () {
	oe_runmake 'LIBREADLINE=-L${STAGING_LIBDIR} -lreadline -lncurses'
}

do_stage() {
	oe_soinstall .libs/libsqlite.so.0.8.6 ${STAGING_LIBDIR}
	install -m 0644 sqlite.h ${STAGING_INCDIR}
}

do_install() {
	oe_runmake install prefix=${D}/${prefix} exec_prefix=${D}/${exec_prefix}
}