blob: 3493e7d344647baa9489311aefef4b6a1e56c2f7 (
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
|
LICENSE = "LGPL"
DEPENDS = "libgnome libsoup-2.4 gtk+"
PR = "r1"
inherit gnome
do_configure_prepend() {
sed -i -e s:help:: ${S}/Makefile.am
}
PACKAGES =+ "libpanel-applet"
FILES_libpanel-applet = "${libdir}/libpanel-applet-2.so.*"
FILES_${PN} =+ "${datadir}/gnome* \
${datadir}/icons"
do_configure_prepend() {
sed -i -e 's: doc : :g' ${S}/Makefile.am
}
EXTRA_OEMAKE = "ORBIT_IDL=${STAGING_BINDIR_NATIVE}/orbit-idl-2"
# A hundred meg of xml files is a bit much...
PACKAGES =+ "${PN}-locationdata"
FILES_${PN}-locationdata = "${datadir}/libgweather/Locations*"
do_stage() {
autotools_stage_all
}
|