mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
Older versions of sqlite required tclsh at compile time but this is no longer the case with recent 3.7.x. See http://lists.linuxtogo.org/pipermail/openembedded-core/2011-June/003653.html (From OE-Core rev: cf8ef471d9620011e52462a84962b7f7ebf4e128) Signed-off-by: Phil Blundell <philb@gnu.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
1.0 KiB
PHP
30 lines
1.0 KiB
PHP
DESCRIPTION = "An Embeddable SQL Database Engine"
|
|
HOMEPAGE = "http://www.sqlite.org"
|
|
SECTION = "libs"
|
|
PRIORITY = "optional"
|
|
DEPENDS = "readline ncurses"
|
|
DEPENDS_virtclass-native = ""
|
|
LICENSE = "PD"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "--disable-tcl --enable-shared --enable-threadsafe"
|
|
EXTRA_OECONF_virtclass-native = "--disable-tcl --enable-shared --enable-threadsafe --disable-readline --enable-tempstore"
|
|
export config_BUILD_CC = "${BUILD_CC}"
|
|
export config_BUILD_CFLAGS = "${BUILD_CFLAGS}"
|
|
export config_BUILD_LIBS = "${BUILD_LDFLAGS}"
|
|
export config_TARGET_CC = "${CC}"
|
|
export config_TARGET_LINK = "${CCLD}"
|
|
export config_TARGET_CFLAGS = "${CFLAGS}"
|
|
export config_TARGET_LFLAGS = "${LDFLAGS}"
|
|
|
|
PACKAGES = "lib${PN} lib${PN}-dev lib${PN}-doc ${PN} ${PN}-dbg"
|
|
FILES_${PN} = "${bindir}/*"
|
|
FILES_lib${PN} = "${libdir}/*.so.*"
|
|
FILES_lib${PN}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so \
|
|
${libdir}/pkgconfig ${includedir}"
|
|
FILES_lib${PN}-doc = "${docdir} ${mandir} ${infodir}"
|
|
AUTO_LIBNAME_PKGS = "lib${PN}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|