mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-17 12:41:58 +02:00
Not all dependencies are in yet e.g. eve is missing webkit-efl, but e-wm should build Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
30 lines
1.1 KiB
BlitzBasic
30 lines
1.1 KiB
BlitzBasic
DESCRIPTION = "Azy is a library meant for implementing rpc clients and servers in a simple manner."
|
|
DEPENDS = "pkgconfig zlib openssl eina gnutls ecore libxml2 re2c-native mysql5 azy-native"
|
|
DEPENDS_virtclass-native = "pkgconfig-native zlib-native openssl-native eina-native gnutls-native ecore-native libxml2-native re2c-native mysql5-native"
|
|
LICENSE = "LGPLv2.1+"
|
|
PV = "1.0.0+svnr${SRCPV}"
|
|
SRCREV = "${EFL_SRCREV}"
|
|
|
|
# to provide native lemon binary
|
|
BBCLASSEXTEND = "native"
|
|
|
|
do_configure_prepend() {
|
|
sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/lemon#g" ${S}/src/bin/Makefile.am
|
|
sed -i "s#\$(top_builddir)/src/bin/azy_parser -H -p -o#${STAGING_BINDIR_NATIVE}/azy_parser -H -p -o#g" ${S}/src/tests/Makefile.am
|
|
sed -i "s#\$(top_builddir)/src/bin/azy_parser -eHn -m#${STAGING_BINDIR_NATIVE}/azy_parser -eHn -m#g" ${S}/src/tests/identi.ca/Makefile.am
|
|
}
|
|
do_configure_virtclass-native() {
|
|
efl_do_configure
|
|
}
|
|
|
|
do_install_append_virtclass-native() {
|
|
install -d ${D}/${bindir}
|
|
install -m 0755 ${S}/src/bin/lemon ${D}/${bindir}
|
|
}
|
|
|
|
inherit efl
|
|
|
|
SRC_URI = "${E_SVN}/trunk/PROTO;module=${SRCNAME};proto=http;scmdata=keep"
|
|
S = "${WORKDIR}/${SRCNAME}"
|
|
|