blob: 837157ee3e73a95d3da298de9da6245bc12e1182 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Edje is a complex graphical design & layout library."
DEPENDS = "edje embryo-utils gcc"
LICENSE = "MIT"
PR = "r6"
inherit efl
PACKAGES = "edje-utils"
FILES_${PN} = "${bindir}/edje ${bindir}/edje_* ${datadir}/edje/data/template ${datadir}/edje/include"
RDEPENDS_${PN} += "embryo-utils cpp cpp-symlinks gcc gcc-symlinks"
SRC_URI = "http://enlightenment.freedesktop.org/files/edje-${PV}.tar.gz \
cvs://anonymous@thinktux.net/root;module=e17/libs/edje/m4;date=20060101"
S = "${WORKDIR}/edje-${PV}"
libraries = ""
headers = ""
do_configure_prepend() {
install -d "${S}/m4"
install "${WORKDIR}/m4/"*.m4 "${S}/m4"
aclocal -I m4
}
|