mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 20:51:57 +02:00
Remove two patches which are already included in new version and rebase one patch to new version and add lzo rdepends to fix below qa issue. [1] ERROR: mariadb-10.7.3-r0 do_package_qa: QA Issue: /usr/lib64/plugin/provider_lzo.so contained in package mariadb-server requires liblzo2.so.2()(64bit), but no providers found in RDEPENDS:mariadb-server? [file-rdeps] Add gnutls to depends to fix below error and fmt to depends [2] | Could NOT find GnuTLS (missing: GNUTLS_LIBRARY GNUTLS_INCLUDE_DIR) [1]bf8b699f64[2]284ed64336Signed-off-by: Mingli Yu <mingli.yu@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
21 lines
479 B
BlitzBasic
21 lines
479 B
BlitzBasic
require mariadb.inc
|
|
inherit native
|
|
|
|
PROVIDES += "mysql5-native"
|
|
DEPENDS = "ncurses-native zlib-native bison-native libpcre2-native"
|
|
|
|
RDEPENDS:${PN} = ""
|
|
PACKAGES = ""
|
|
EXTRA_OEMAKE = ""
|
|
|
|
do_install() {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
|
|
install -d ${D}${bindir}
|
|
install -m 0755 sql/gen_lex_hash ${D}${bindir}/
|
|
install -m 0755 sql/gen_lex_token ${D}${bindir}/
|
|
install -m 0755 extra/comp_err ${D}${bindir}/
|
|
install -m 0755 scripts/comp_sql ${D}${bindir}/
|
|
}
|
|
|