summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Kemper2017-07-22 14:24:21 +0000
committerSebastian Kemper2017-07-22 14:24:58 +0000
commitac3551f72385ad2262a5158924545ed845d3b0d1 (patch)
tree2fbe9a0af035f83e37d1fb4fe76c97ea514634f3
parent1dc4faadaf4b1aba4c137c837bbc6c48f13d05aa (diff)
downloadtelephony-ac3551f72385ad2262a5158924545ed845d3b0d1.tar.gz
libs/bcg729: bump to 1.0.2
Also remove the static binary from InstallDev as it's not used. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
-rw-r--r--libs/bcg729/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/libs/bcg729/Makefile b/libs/bcg729/Makefile
index 6a36c58..9d18b3e 100644
--- a/libs/bcg729/Makefile
+++ b/libs/bcg729/Makefile
@@ -1,5 +1,5 @@
#
-# Copyright (C) 2006-2014 OpenWrt.org
+# Copyright (C) 2006-2017 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=bcg729
-PKG_VERSION:=1.0.0
+PKG_VERSION:=1.0.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://download-mirror.savannah.gnu.org/releases/linphone/plugins/sources/
-PKG_MD5SUM:=5d0c160129c0850c43dd66c78efe429b
+PKG_HASH:=77c923edc57a53014da5f31788b63efbabfc7277c06deaeada06574628e4b03f
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
PKG_INSTALL:=1
@@ -43,13 +43,14 @@ endef
TARGET_CFLAGS += $(FPIC)
CONFIGURE_ARGS += \
--enable-shared \
- --enable-static
+ --enable-static=no \
+ --disable-msplugin
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/include
$(CP) -R $(PKG_INSTALL_DIR)/usr/include/bcg729 $(1)/usr/include/
$(INSTALL_DIR) $(1)/usr/lib
- $(CP) $(PKG_INSTALL_DIR)/usr/lib/libbcg729.{a,so*} $(1)/usr/lib/
+ $(CP) $(PKG_INSTALL_DIR)/usr/lib/libbcg729.so* $(1)/usr/lib/
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libbcg729.pc $(1)/usr/lib/pkgconfig/
endef