mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 05:01:58 +02:00
* Upstream switched from autotools to cmake * Separate build dir and parallel make now work * Library versioning no longer used for plugins; other libtool cruft gone * Proper upstream initscript * Plugins moved from client library package to mariadb-server package (matches how Fedora packages these) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
20 lines
403 B
BlitzBasic
20 lines
403 B
BlitzBasic
require mariadb_${PV}.inc
|
|
inherit native
|
|
|
|
PROVIDES += "mysql5-native"
|
|
DEPENDS = "ncurses-native zlib-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 extra/comp_err ${D}${bindir}/
|
|
install -m 0755 scripts/comp_sql ${D}${bindir}/
|
|
}
|
|
|