asterisk-1.8.x: update to version 1.8.31.1
[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 include $(INCLUDE_DIR)/package.mk
22
23 TARGET_CFLAGS += $(FPIC)
24 CONFIGURE_ARGS += --disable-stdout --enable-syslog
25
26 define Package/libsrtp
27   SUBMENU:=Telephony
28   SECTION:=libs
29   CATEGORY:=Libraries
30   TITLE:=Secure Real-time Transport Protocol (SRTP) library
31   URL:=http://sourceforge.net/projects/srtp
32   MAINTAINER:=Jiri Slachta <slachta@cesnet.cz>
33 endef
34
35 define Package/libsrtp/description
36 Open-source implementation of the Secure Real-time Transport
37 Protocol (SRTP) originally authored by Cisco Systems, Inc.
38 It is available under a BSD-style license.
39 endef
40
41 define Build/InstallDev
42         $(INSTALL_DIR) $(1)/usr/include
43         $(CP) $(PKG_INSTALL_DIR)/usr/include/srtp $(1)/usr/include/
44         $(INSTALL_DIR) $(1)/usr/lib
45         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsrtp.{a,so*} $(1)/usr/lib/
46 endef
47
48
49 define Package/libsrtp/install
50         $(INSTALL_DIR) $(1)/usr/lib
51         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libsrtp.so.* \
52                 $(1)/usr/lib/
53 endef
54
55 $(eval $(call BuildPackage,libsrtp))