Add PKG_LICENSE to the rest of the packages
[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 PKG_INSTALL:=1
19
20 PKG_LICENSE:=BSD-2-Clause
21 PKG_LICENSE_FILES:=COPYING
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/rtpproxy
26 SECTION:=net
27 CATEGORY:=Network
28 SUBMENU:=Telephony
29 DEPENDS:=+libpthread
30 TITLE:=RTP (Realtime Transport Protocol) proxy
31 URL:=http://www.rtpproxy.org/
32 endef
33
34 # uses GNU configure
35
36 define Package/rtpproxy/install
37 $(INSTALL_DIR) $(1)/usr/bin
38 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rtpproxy $(1)/usr/bin/
39 endef
40
41 $(eval $(call BuildPackage,rtpproxy))