blob: 97cf1e8e3d5ada70b2f746a2560d02e4fbc968af (
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 "
FILE_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
}
|