mirror of
https://git.yoctoproject.org/poky
synced 2026-03-03 22:09:39 +01:00
As discussed on the mailing lists, using a suffix to package names is hard and has lead to many recipes having to do PKGSUFFIX games. Its looking extremely hard to scale nativesdk much further without hacking many recipes. By comparison, using a prefix like multilib does works much better and doesn't involve "hacking" as many recipes. This change converts nativesdk to use a prefix using the existing multilib infrastructure. (From OE-Core rev: 81813c0e322dc04ce4b069117188d8a54dfddb8c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
DESCRIPTION = "An Embeddable SQL Database Engine"
|
|
HOMEPAGE = "http://www.sqlite.org"
|
|
SECTION = "libs"
|
|
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${BPN} lib${BPN}-dev lib${BPN}-doc ${PN}-dbg lib${BPN}-staticdev ${PN}"
|
|
|
|
FILES_${PN} = "${bindir}/*"
|
|
FILES_lib${BPN} = "${libdir}/*.so.*"
|
|
FILES_lib${BPN}-dev = "${libdir}/*.la ${libdir}/*.so \
|
|
${libdir}/pkgconfig ${includedir}"
|
|
FILES_lib${BPN}-doc = "${docdir} ${mandir} ${infodir}"
|
|
FILES_lib${BPN}-staticdev = "${libdir}/lib*.a"
|
|
AUTO_LIBNAME_PKGS = "lib${BPN}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|