From a4fdda92ba1d056fe78fad12c8577f8f655704e1 Mon Sep 17 00:00:00 2001 From: acoul Date: Tue, 12 Oct 2010 14:24:36 +0000 Subject: [PATCH] net/udpxy: add udpxy package. (closes ticket #8077) git-svn-id: svn://svn.openwrt.org/openwrt/packages@23413 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/udpxy/Makefile | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 net/udpxy/Makefile diff --git a/net/udpxy/Makefile b/net/udpxy/Makefile new file mode 100644 index 000000000..dfc477731 --- /dev/null +++ b/net/udpxy/Makefile @@ -0,0 +1,47 @@ +# +# Copyright (C) 2006 - 2010 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:=udpxy +PKG_REV=1.0 +PKG_TAG=Chipmunk-16 +PKG_VERSION=$(PKG_REV)-$(PKG_TAG) +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME).$(PKG_REV)-$(PKG_TAG).tgz +PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_REV) +PKG_SOURCE_URL:=@SF/udpxy +PKG_MD5SUM:=0bba6fd3e0b0065424b198abdf0acb7d + +include $(INCLUDE_DIR)/package.mk + +define Package/udpxy + SECTION:=net + CATEGORY:=Network + DEPENDS:= + TITLE:=convert UDP IPTV streams into http stream + URL:=http://sourceforge.net/projects/udpxy +endef + +define Package/udpxy/description + udproxy makes it possible to convert UDP IPTV streams into http + streams which can be viewed even over wlans. http streams do + not generate huge amounts of multicast traffic, so a sd stream + only takes about 300k. interesting for peoply who have IPTV at + home and do not want to rent multiple decoders from their + provider but just use their own streaming client for example + popcornhour/mediatomb/vlc/etc. +endef + +define Package/udpxy/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/udpxy $(1)/usr/bin/ + ln -sf udpxy $(1)/usr/bin/udpxrec +endef + +$(eval $(call BuildPackage,udpxy)) -- 2.11.0