blob: 6668f082786a3aadc136dea0602c55242ec0b93c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
DESCRIPTION = "EFL-based weather widget library"
LICENSE = "LGPL"
DEPENDS = "ecore edje"
PV = "0.0.0+svnr${SRCPV}"
PR = "r0"
inherit efl
EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc"
SRC_URI = "svn://svn.enlightenment.org/svn/e/trunk/PROTO;module=eweather;proto=http"
S = "${WORKDIR}/eweather"
RSUGGESTS_${PN} = "elementary-tests"
do_compile_append() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
eweather.pc
}
PACKAGES += "${PN}-plugins"
FILES_${PN}-themes = "\
${datadir} \
"
FILES_${PN}-plugins = "\
${libdir}/eweather/plugins/*.so \
"
FILES_${PN}-dbg += "\
${libdir}/eweather/plugins/.debug \
"
FILES_${PN}-dev += "\
${libdir}/eweather/plugins/*.a \
${libdir}/eweather/plugins/*.la \
"
RRECOMMENDS_${PN} = "\
${PN}-themes \
${PN}-plugins \
"
|