blob: 3379cb71689aa18aa9f64e8bee410c1325210174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
LICENSE = "LGPL"
DESCRIPTION = "Nokia hildon mime library"
DEPENDS = "libosso"
PR = "r0"
SRC_URI = "http://archive.ubuntu.com/ubuntu/pool/universe/libh/libhildonmime/libhildonmime_${PV}-1ubuntu1.tar.gz"
inherit autotools pkgconfig lib_package
S = "${WORKDIR}/${PN}"
do_configure_prepend() {
# remove Werror from OSSO_CFLAGS
sed -i s:-Werror::g configure.in
}
do_stage() {
autotools_stage_all
}
|