blob: c05e9d51cb5c9310ae2cf8c4fc03105d140112f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
DESCRIPTION = "An LGPL implementation of RTP - RFC3550"
LICENSE = "LGPL"
DEPENDS = "glibc "
PR = "r1"
inherit autotools pkgconfig
SRC_URI = "http://download.savannah.nongnu.org/releases/linphone/${PN}/sources/${P}.tar.gz"
do_compile_append() {
sed -i -e s:${STAGING_DIR_TARGET}::g \
-e s:/${TARGET_SYS}::g \
ortp.pc
}
do_stage () {
autotools_stage_all
}
|