From 437478db945756bd23ea68a5237d7a9e2138a07c Mon Sep 17 00:00:00 2001 From: Johannes Morgenroth Date: Wed, 20 Aug 2014 12:40:23 +0200 Subject: ibrdtn-tools: add new package This package contains the tools (dtnsend, dtnrecv, dtnping, ...) of IBR-DTN, a modular and lightweight implementation of the bundle protocol (RFC 5050). https://github.com/ibrdtn/ibrdtn Signed-off-by: Johannes Morgenroth --- net/ibrdtn-tools/Makefile | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 net/ibrdtn-tools/Makefile (limited to 'net/ibrdtn-tools/Makefile') diff --git a/net/ibrdtn-tools/Makefile b/net/ibrdtn-tools/Makefile new file mode 100644 index 000000000..00424a7a8 --- /dev/null +++ b/net/ibrdtn-tools/Makefile @@ -0,0 +1,49 @@ +# +# Copyright (C) 2014 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:=ibrdtn-tools +PKG_VERSION:=0.12.1 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases +PKG_MD5SUM:=0ce0c6e754263919ad48661967c2f6fd +PKG_MAINTAINER:=Johannes Morgenroth +PKG_LICENSE:=Apache-2.0 + +PKG_INSTALL:=1 +PKG_BUILD_DEPENDS:=libarchive ibrdtn + +include $(INCLUDE_DIR)/package.mk + +define Package/ibrdtn-tools + SECTION:=net + CATEGORY:=Network + DEPENDS:=+ibrdtn +libarchive + TITLE:=DTN Tools +endef + +define Package/ibrdtn-tools/description + The IBR-DTN Tools include functionality for sending and receiving files (dtnsend/dtnrecv) + and a tools to ping a DTN node (dtnping). +endef + +define Package/ibrdtn-tools/install + $(INSTALL_DIR) $(1)/usr/bin/ + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtnping $(1)/usr/bin/dtnping + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtnsend $(1)/usr/bin/dtnsend + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtnrecv $(1)/usr/bin/dtnrecv + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtninbox $(1)/usr/bin/dtninbox + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtnoutbox $(1)/usr/bin/dtnoutbox + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtntrigger $(1)/usr/bin/dtntrigger + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtntracepath $(1)/usr/bin/dtntracepath + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtnstream $(1)/usr/bin/dtnstream +endef + +$(eval $(call BuildPackage,ibrdtn-tools)) -- cgit v1.2.3