blob: 56437e625fded4438eca35ce7b675552966d64ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
LICENSE = "LGPL"
DESCRIPTION = "Nokia osso library"
DEPENDS = "dbus-glib glib-2.0"
inherit autotools pkgconfig lib_package
do_configure_prepend() {
# Remove Werror from OSSO_CFLAGS since the source
# contains many implicit (const void *) to (void *)
# conversions.
sed -i s:-Werror::g configure.ac
}
do_stage() {
autotools_stage_all
}
|