mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 12:32:13 +02:00
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
49
meta/classes/efl.bbclass
Normal file
49
meta/classes/efl.bbclass
Normal file
@@ -0,0 +1,49 @@
|
||||
inherit e
|
||||
|
||||
SECTION = "e/libs"
|
||||
|
||||
SRCNAME = "${@bb.data.getVar('PN', d, 1).replace('-native', '')}"
|
||||
SRC_URI = "${E_URI}/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
INHIBIT_AUTO_STAGE_INCLUDES = "1"
|
||||
INHIBIT_NATIVE_STAGE_INSTALL = "1"
|
||||
|
||||
libdirectory = "src/lib"
|
||||
libraries = "lib${SRCNAME}"
|
||||
headers = "${@bb.data.getVar('SRCNAME',d,1).capitalize()}.h"
|
||||
|
||||
do_stage_append () {
|
||||
for i in ${libraries}
|
||||
do
|
||||
oe_libinstall -C ${libdirectory} $i ${STAGING_LIBDIR}
|
||||
done
|
||||
for i in ${headers}
|
||||
do
|
||||
install -m 0644 ${libdirectory}/$i ${STAGING_INCDIR}
|
||||
done
|
||||
|
||||
# Install binaries automatically for native builds
|
||||
if [ "${@binconfig_suffix(d)}" = "-native" ]
|
||||
then
|
||||
|
||||
# Most EFL binaries start with the package name
|
||||
for i in src/bin/${SRCNAME}*
|
||||
do
|
||||
if [ -x $i -a -f $i ]
|
||||
then
|
||||
|
||||
# Don't install anything with an extension (.so, etc)
|
||||
if echo $i | grep -v \\.
|
||||
then
|
||||
${HOST_SYS}-libtool --mode=install install -m 0755 $i ${STAGING_BINDIR}
|
||||
fi
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
PACKAGES = "${PN} ${PN}-themes ${PN}-dev ${PN}-examples"
|
||||
FILES_${PN}-dev = "${bindir}/${PN}-config ${libdir}/pkgconfig ${libdir}/lib*.?a ${libdir}/lib*.a"
|
||||
FILES_${PN}-examples = "${bindir} ${datadir}"
|
||||
|
||||
Reference in New Issue
Block a user