blob: 7af653ed440d2d4cfa38b03974d5709a91beb03e (
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 IPC library"
DEPENDS = "dbus-glib glib-2.0 mce-dev"
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
}
|