From: Jo-Philipp Wich Date: Tue, 24 May 2011 09:01:18 +0000 (+0000) Subject: add udpcast - a file transfer tool that can send data simultaneously to many destinat... X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=b8177d42c0344afc1724f1e943c8936721a6ad47;p=openwrt%2Fsvn-archive%2Fpackages.git add udpcast - a file transfer tool that can send data simultaneously to many destinations on a LAN, patch by Lauri Võsandi SVN-Revision: 26980 --- diff --git a/net/udpcast/Makefile b/net/udpcast/Makefile new file mode 100644 index 000000000..690ed986e --- /dev/null +++ b/net/udpcast/Makefile @@ -0,0 +1,41 @@ +# +# Copyright (C) 2011 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:=udpcast +PKG_RELEASE:=1 +PKG_VERSION:=20100130 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://udpcast.linux.lu/download/ +PKG_MD5SUM:=f9ad942dfe3ecbd2da5d91479957e5a9 + +include $(INCLUDE_DIR)/package.mk + +define Package/udpcast + SECTION:=utils + CATEGORY:=Utilities + TITLE:=UDP Cast + URL:=http://udpcast.linux.lu/ +endef + +define Package/udpcast/description + UDPcast is a file transfer tool that can send data simultaneously to many destinations on a LAN. +endef + +define Package/udpcast/install + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) \ + $(PKG_BUILD_DIR)/udp-receiver \ + $(1)/usr/sbin/ + $(INSTALL_BIN) \ + $(PKG_BUILD_DIR)/udp-sender \ + $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,udpcast))