diff options
Diffstat (limited to 'packages/efl/ecore.inc')
-rw-r--r-- | packages/efl/ecore.inc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/packages/efl/ecore.inc b/packages/efl/ecore.inc new file mode 100644 index 0000000000..a8ef0ec982 --- /dev/null +++ b/packages/efl/ecore.inc @@ -0,0 +1,31 @@ +DESCRIPTION = "Ecore is the core event abstraction layer for the enlightenment \ +foundation libraries. It makes makes doing selections, drag and drop, event loops, \ +timeouts and idle handlers fast, optimized, and convenient." +LEAD_SONAME = "libecore.so" +PROVIDES = "virtual/ecore" +LICENSE = "MIT" +DEPENDS = "curl edb eet virtual/evas freetype edb-native" + +inherit efl + +SRC_URI = "http://enlightenment.freedesktop.org/files/ecore-${PV}.tar.gz \ + file://ecore-configure.patch;patch=1" +S = "${WORKDIR}/ecore-${PV}" + +EXTRA_OECONF = "<override me>" + +libraries = "" +headers = "" +parts = "<override me>" + +do_stage_append() { + for p in ${parts}; do + dir=`echo $p|tr A-Z a-z` + install -m 0644 ${S}/src/lib/$dir/$p.h ${STAGING_INCDIR}/ + oe_libinstall -C src/lib/$dir lib$dir ${STAGING_LIBDIR}/ + done + install -m 0644 ${S}/src/lib/ecore/Ecore_Data.h ${STAGING_INCDIR}/ + install -m 0644 ${S}/ecore.m4 ${STAGING_DATADIR}/aclocal/ +} + +FILES_${PN} += "${libdir}/libecore*.so* ${libdir}/ecore_config_ipc_ecore.so" |