mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-20 06:28:30 +00: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>
27 lines
984 B
Plaintext
27 lines
984 B
Plaintext
SECTION = "e/apps"
|
|
|
|
inherit e-base autotools pkgconfig binconfig
|
|
|
|
do_prepsources () {
|
|
make clean distclean || true
|
|
}
|
|
addtask prepsources after do_patch before do_configure
|
|
|
|
do_configure_prepend() {
|
|
autopoint || touch config.rpath
|
|
}
|
|
|
|
do_configure_append() {
|
|
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
|
}
|
|
|
|
export CURL_CONFIG = "${STAGING_BINDIR_CROSS}/curl-config"
|
|
export FREETYPE_CONFIG = "${STAGING_BINDIR_CROSS}/freetype-config"
|
|
|
|
# This construction is stupid, someone with more E knowledge should change it to =+ or something
|
|
# And it's in efl.bbclass as well....
|
|
PACKAGES = "${PN}-dbg ${PN}-themes ${PN} ${PN}-dev ${PN}-doc ${PN}-lib ${PN}-static"
|
|
FILES_${PN}-lib = "${libdir}/lib*.so.*"
|
|
FILES_${PN}-themes = "${datadir}/${PN}/themes ${datadir}/${PN}/data ${datadir}/${PN}/fonts ${datadir}/${PN}/pointers ${datadir}/${PN}/images ${datadir}/${PN}/users ${datadir}/${PN}/images ${datadir}/${PN}/styles"
|
|
FILES_${PN}-dev += "${includedir} ${libdir}/lib*.so"
|