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 }