From a6f930dc07c9e952fe21803acdf41bd90adfbba8 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Tue, 29 Sep 2009 13:39:02 +0000 Subject: [PATCH] [packages] add basic rtpproxy package SVN-Revision: 17799 --- net/rtpproxy/Makefile | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 net/rtpproxy/Makefile diff --git a/net/rtpproxy/Makefile b/net/rtpproxy/Makefile new file mode 100644 index 0000000000..05561f9688 --- /dev/null +++ b/net/rtpproxy/Makefile @@ -0,0 +1,41 @@ +# +# 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 +PKG_VERSION:=1.2.0 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://b2bua.org/chrome/site/ +PKG_MD5SUM:=eb4e650ec00618a77a35f0abb91f988a + +include $(INCLUDE_DIR)/package.mk + +define Package/rtpproxy + SECTION:=net + CATEGORY:=Network + DEPENDS:= + TITLE:=RTP (Realtime Transport Protocol) proxy + URL:=http://www.rtpproxy.org/ +endef + +# uses GNU configure + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install +endef + +define Package/rtpproxy/install + $(INSTALL_DIR) $(1)/usr/bin + $(CP) $(PKG_INSTALL_DIR)/usr/bin/rtpproxy $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,rtpproxy)) -- 2.30.2