4d7d5a61795185471cc1b73617b23b40719a6aa1
[feed/telephony.git] / libs / libsrtp / Makefile
1 #
2 # Copyright (C) 2014 OpenWrt.org
3 # Copyright (C) 2011 Victor Seva <linuxmaniac@torreviejawireless.org>
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=libsrtp
11 PKG_VERSION:=1.4.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=srtp-$(PKG_VERSION).tgz
15 PKG_SOURCE_URL:=@SF/srtp
16 PKG_MD5SUM:=9b449edb011c934ca97009e7e0566d22
17
18 PKG_BUILD_DIR:=$(BUILD_DIR)/srtp
19 PKG_INSTALL:=1
20
21 PKG_LICENSE:=BSD-3-Clause
22 PKG_LICENSE_FILES:=LICENSE
23 PKG_MAINTAINER:=Jiri Slachta <slachta@cesnet.cz>
24
25 include $(INCLUDE_DIR)/package.mk
26
27 TARGET_CFLAGS += $(FPIC)
28 CONFIGURE_ARGS += --disable-stdout --enable-syslog
29
30 define Package/libsrtp
31 SUBMENU:=Telephony
32 SECTION:=libs
33 CATEGORY:=Libraries
34 TITLE:=Secure Real-time Transport Protocol (SRTP) library
35 URL:=http://sourceforge.net/projects/srtp
36 endef
37
38 define Package/libsrtp/description
39 Open-source implementation of the Secure Real-time Transport
40 Protocol (SRTP) originally authored by Cisco Systems, Inc.
41 It is available under a BSD-style license.
42 endef
43
44 define Build/Install
45 $(MAKE) -C $(PKG_BUILD_DIR) DESTDIR=$(PKG_INSTALL_DIR) uninstall
46 $(call Build/Install/Default)
47 endef
48
49 define Build/InstallDev
50 $(INSTALL_DIR) $(1)/usr/include
51 $(CP) $(PKG_INSTALL_DIR)/usr/include/srtp $(1)/usr/include/
52 $(INSTALL_DIR) $(1)/usr/lib
53 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsrtp.{a,so*} $(1)/usr/lib/
54 endef
55
56
57 define Package/libsrtp/install
58 $(INSTALL_DIR) $(1)/usr/lib
59 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsrtp.so.* \
60 $(1)/usr/lib/
61 endef
62
63 $(eval $(call BuildPackage,libsrtp))