summaryrefslogtreecommitdiffstats
path: root/package/freeswitch-mod-bcg729/freeswitch-mod-bcg729.mk
blob: 98324b2a0815a743490be5295fd2c3eed729e1fa (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
################################################################################
#
# freeswitch-mod-bcg729
#
################################################################################

FREESWITCH_MOD_BCG729_VERSION = v1.0.4
FREESWITCH_MOD_BCG729_SITE = $(call github,xadhoom,mod_bcg729,$(FREESWITCH_MOD_BCG729_VERSION))
FREESWITCH_MOD_BCG729_LICENSE = MPL-1.1
FREESWITCH_MOD_BCG729_LICENSE_FILES = LICENSE
FREESWITCH_MOD_BCG729_DEPENDENCIES = freeswitch bcg729

# instead of patching the not cross-compile friendly Makefile from
# upstream we issue the necessary build commands ourselves
define FREESWITCH_MOD_BCG729_BUILD_CMDS
	$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \
		-I$(STAGING_DIR)/usr/include/freeswitch \
		-fPIC -fomit-frame-pointer -fno-exceptions \
		-c $(@D)/mod_bcg729.c -o $(@D)/mod_bcg729.o
	$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) \
		-fPIC -fomit-frame-pointer -fno-exceptions \
		-shared -Xlinker -x -lm -lbcg729 -Wl,-Bdynamic \
		-o $(@D)/mod_bcg729.so $(@D)/mod_bcg729.o
endef

define FREESWITCH_MOD_BCG729_INSTALL_TARGET_CMDS
	$(INSTALL) -m 0755 $(@D)/mod_bcg729.so $(TARGET_DIR)/usr/lib/freeswitch/mod/mod_bcg729.so
endef

$(eval $(generic-package))
OpenPOWER on IntegriCloud