blob: 9c96f4d39f82d864a42d69e23b67f9ac80d2dc12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
DESCRIPTION = "GSM Audio Library"
SECTION = "libs"
PRIORITY = "optional"
#DEPENDS = ""
LICENSE = "libgsm"
PR = "r0"
SRC_URI = "http://user.cs.tu-berlin.de/~jutta/gsm/gsm-${PV}.tar.gz \
file://01_makefile.patch;patch=1 \
file://02_cplusplus.patch;patch=1 \
file://03_config.patch;patch=1 \
file://04_includes.patch;patch=1 \
file://05_compiler_warnings.patch;patch=1 \
"
S = "${WORKDIR}/gsm-1.0-pl12/"
CFLAGS += "-c -g -fPIC -Wall -D_GNU_SOURCE -D_REENTRANT -DNeedFunctionPrototypes=1 -DWAV49 -I./inc"
PARALLEL_MAKE = ""
do_compile() {
unset LD
oe_runmake CCFLAGS="${CFLAGS}"
}
do_install() {
oe_libinstall -a -C lib libgsm ${D}${libdir}
oe_libinstall -so -C lib libgsm ${D}${libdir}
install -d ${D}/usr/include/gsm
install -m 0644 ${S}/inc/gsm.h ${D}/usr/include/gsm/
cd ${D}/usr/include/
ln -s gsm/gsm.h gsm.h
}
do_stage () {
oe_libinstall -a -C lib libgsm ${STAGING_LIBDIR}
oe_libinstall -so -C lib libgsm ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/gsm
install -m 0644 ${S}/inc/gsm.h ${STAGING_INCDIR}/gsm/
rm -f ${STAGING_INCDIR}/gsm.h
ln -s ${STAGING_INCDIR}/gsm/gsm.h ${STAGING_INCDIR}/gsm.h
}
|