2006-12-14 04:34:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-03-04 04:19:46 +00:00
|
|
|
# $Id$
|
2006-12-14 04:34:21 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=netpipe
|
|
|
|
PKG_VERSION:=3.6.2
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=NetPIPE_$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.scl.ameslab.gov/netpipe/code
|
|
|
|
PKG_MD5SUM:=62570140a3617eca4b15b3255d3edbe6
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/NetPIPE_$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/netpipe
|
|
|
|
SECTION:=net
|
2007-01-02 08:43:08 +00:00
|
|
|
CATEGORY:=Network
|
2006-12-14 04:34:21 +00:00
|
|
|
TITLE:=A Network Protocol Independent Performance Evaluator
|
|
|
|
URL:=http://www.scl.ameslab.gov/netpipe/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/netpipe/description
|
|
|
|
A Network Protocol Independent Performance Evaluator
|
|
|
|
endef
|
|
|
|
|
2006-12-14 04:34:21 +00:00
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/netpipe/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/NPtcp $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,netpipe))
|