bcg729: fix 1.0.4 build
[feed/telephony.git] / libs / bcg729 / Makefile
1 #
2 # Copyright (C) 2006-2017 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=bcg729
11 PKG_VERSION:=1.0.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=https://www.linphone.org/releases/sources/bcg729
16 PKG_HASH:=1a0fbf1ff91470037e83fa67976f940ebb601e4cc525859c754f4e7ffc24c307
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
19 CMAKE_INSTALL:=1
20
21 PKG_LICENSE:=GPL-2.0+
22 PKG_LICENSE_FILES:=COPYING
23 PKG_MAINTAINER:=Alex Samorukov <samm@os2.kiev.ua>
24
25 include $(INCLUDE_DIR)/package.mk
26 include $(INCLUDE_DIR)/cmake.mk
27
28 define Package/bcg729
29 SUBMENU:=Telephony
30 SECTION:=libs
31 CATEGORY:=Libraries
32 TITLE:=Software G729A encoder and decoder library written in C
33 URL:=http://www.linphone.org/technical-corner/bcg729.html
34 DEPENDS:=@BUILD_PATENTED
35 endef
36
37 define Package/bcg729/description
38 Bcg729 is a software G729A encoder and decoder library written in C, developed
39 by Belledonne Communications, the company supporting the Linphone project.
40 It was written from scratch and is NOT a derivative work of ITU reference
41 source code in any kind.
42 endef
43
44 TARGET_CFLAGS += $(FPIC)
45
46 CMAKE_OPTIONS += \
47 -DENABLE_SHARED=YES \
48 -DENABLE_STATIC=NO \
49 -DENABLE_TESTS=NO
50
51 define Build/InstallDev
52 $(INSTALL_DIR) $(1)/usr/include/bcg729
53 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/include/bcg729/*.h $(1)/usr/include/bcg729
54 $(INSTALL_DIR) $(1)/usr/lib
55 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libbcg729.so* $(1)/usr/lib/
56 $(INSTALL_DIR) $(1)/usr/lib/cmake/Bcg729
57 $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/share/Bcg729/cmake/*.cmake $(1)/usr/lib/cmake/Bcg729
58 endef
59
60 define Package/bcg729/install
61 $(INSTALL_DIR) $(1)/usr/lib
62 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libbcg729.so* $(1)/usr/lib/
63 endef
64
65 $(eval $(call BuildPackage,bcg729))