2009-09-29 13:39:02 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=rtpproxy
|
2009-12-10 12:29:33 +00:00
|
|
|
PKG_VERSION:=1.2.1
|
2009-09-29 13:39:02 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://b2bua.org/chrome/site/
|
2009-12-10 12:29:33 +00:00
|
|
|
PKG_MD5SUM:=b0b5d6cdce3f17cdbbac473c11a2d0e5
|
2009-09-29 13:39:02 +00:00
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2009-09-29 13:39:02 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/rtpproxy
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2011-03-12 00:25:24 +00:00
|
|
|
SUBMENU:=Telephony
|
2009-12-10 12:29:33 +00:00
|
|
|
DEPENDS:=+libpthread
|
2009-09-29 13:39:02 +00:00
|
|
|
TITLE:=RTP (Realtime Transport Protocol) proxy
|
|
|
|
URL:=http://www.rtpproxy.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
# uses GNU configure
|
|
|
|
|
|
|
|
define Package/rtpproxy/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2009-12-10 12:29:33 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/rtpproxy $(1)/usr/bin/
|
2009-09-29 13:39:02 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,rtpproxy))
|