blob: d3ae255db8f225ce7069df7590b66bb21b34ab61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
DESCRIPTION = "edje is a complex graphical design & layout library."
DEPENDS = "freetype evas ecore embryo eet edb edje-native"
LICENSE = "MIT"
SECTION = "e/libs"
PR = "r0"
SRC_URI = "http://enlightenment.freedesktop.org/files/edje-${PV}.tar.gz"
S = "${WORKDIR}/edje-${PV}"
inherit autotools pkgconfig binconfig
EXTRA_OECONF = "--disable-edje-cc \
--enable-fb-only"
LEAD_SONAME = "libedje.so"
do_stage () {
oe_libinstall -C src/lib libedje ${STAGING_LIBDIR}/
oe_libinstall -C src/lib libedje_edit ${STAGING_LIBDIR}/
install -m 0644 ${S}/src/lib/Edje.h ${STAGING_INCDIR}/
}
PACKAGES += "edje-examples"
FILES_${PN} = "${libdir}/libedje*.so*"
FILES_${PN}-dev += "${bindir}/edje-config ${libdir}/pkgconfig"
FILES_${PN}-examples = "${bindir}/edje ${bindir}/edje_ls ${datadir}"
|