blob: 1dfa5068d02f97ccf5f70cc6a4d503cf191c67c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
LICENSE = "LiPS"
DESCRIPTION = "LiPS voice call library."
SECTION = "gpe/libs"
PRIORITY = "optional"
DEPENDS = "glib-2.0 dbus-glib linphone"
PR = "r0"
GPE_TARBALL_SUFFIX = "gz"
inherit gpephone pkgconfig autotools
do_compile_prepend() {
for i in `find . -name "Makefile"` ; do
sed -i -e s:I/usr/include:I${STAGING_INCDIR}:g $i
done
}
do_stage () {
autotools_stage_all
}
|