mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 20:39:39 +01:00
- also remove the libtool.patch since it is already in the release version - update the LIC_FILES_CHKSUM, the license is not changed, just use sqlite3.h as more appropriate license file. the original sqlite3.c is actually not point to license content. (From OE-Core rev: 195d907986f19131d8f545b7473a676553c96028) Signed-off-by: Yu Ke <ke.yu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
DESCRIPTION = "An Embeddable SQL Database Engine"
|
|
HOMEPAGE = "http://www.sqlite.org"
|
|
SECTION = "libs"
|
|
PRIORITY = "optional"
|
|
DEPENDS = "readline ncurses tcl-native"
|
|
DEPENDS_virtclass-native = "tcl-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"
|