From a2bf282edfb1343e099846dbc2b12c6486d891ee Mon Sep 17 00:00:00 2001 From: Oliver Ertl Date: Sun, 15 Jul 2007 17:40:47 +0000 Subject: [PATCH] cmdftp: add cmdftp package (#2084) SVN-Revision: 7977 --- net/cmdftp/Makefile | 46 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 net/cmdftp/Makefile diff --git a/net/cmdftp/Makefile b/net/cmdftp/Makefile new file mode 100644 index 0000000000..57bc7ef1d8 --- /dev/null +++ b/net/cmdftp/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2006 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=cmdftp +PKG_VERSION:=0.9.6 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://download.savannah.nongnu.org/releases/$(PKG_NAME) +PKG_MD5SUM:=8389857a0a05bd497fbef67039abbf6b + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(INCLUDE_DIR)/package.mk + +define Package/cmdftp + SECTION:=net + CATEGORY:=Network + TITLE:=cmdftp is a tiny command line FTP client for Unix systems + DESCRIPTION:=\ + Features include passive mode for all data transfers, shell \\\ + like transparent syntax for local and remote modes, multiple \\\ + and recursive file transfers using wildcards, recursive copy and \\\ + move commands, remote and local text file viewing and editing, \\\ + network errors detection and resuming of currently executing \\\ + command, partial download resuming (if server accepts REST \\\ + command), tab completion for both local and remote names, \\\ + autologin using classic ~/.netrc approach, large file support. \\\ + \\\ + cmdftp is aimed at being small and simple. + URL:=http://cmdftp.sourceforge.net/ +endef + +define Package/cmdftp/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,cmdftp)) -- 2.30.2