44dee4e9d973b47bf1c4074ad90281c47a378428
[feed/telephony.git] / net / rtpproxy / Makefile
1 #
2 # Copyright (C) 2013 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:=rtpproxy
11 PKG_VERSION:=1.2.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://b2bua.org/chrome/site/
16 PKG_MD5SUM:=b0b5d6cdce3f17cdbbac473c11a2d0e5
17 PKG_CHECK_FORMAT_SECURITY:=0
18
19 PKG_INSTALL:=1
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/rtpproxy
24   SECTION:=net
25   CATEGORY:=Network
26   SUBMENU:=Telephony
27   DEPENDS:=+libpthread
28   TITLE:=RTP (Realtime Transport Protocol) proxy
29   URL:=http://www.rtpproxy.org/
30 endef
31
32 # uses GNU configure
33
34 define Package/rtpproxy/install
35         $(INSTALL_DIR) $(1)/usr/bin
36         $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rtpproxy $(1)/usr/bin/
37 endef
38
39 $(eval $(call BuildPackage,rtpproxy))