DESCRIPTION:= is obselete
[openwrt/svn-archive/archive.git] / net / cmdftp / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=cmdftp
12 PKG_VERSION:=0.9.6
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://download.savannah.nongnu.org/releases/$(PKG_NAME)
17 PKG_MD5SUM:=8389857a0a05bd497fbef67039abbf6b
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/cmdftp
24 SUBMENU:=FTP
25 SECTION:=net
26 CATEGORY:=Network
27 TITLE:=cmdftp is a tiny command line FTP client for Unix systems
28 URL:=http://cmdftp.sourceforge.net/
29 endef
30
31 define Package/cmdftp/description
32 Features include passive mode for all data transfers, shell
33 like transparent syntax for local and remote modes, multiple
34 and recursive file transfers using wildcards, recursive copy and
35 move commands, remote and local text file viewing and editing,
36 network errors detection and resuming of currently executing
37 command, partial download resuming (if server accepts REST
38 command), tab completion for both local and remote names,
39 autologin using classic ~/.netrc approach, large file support.
40
41 cmdftp is aimed at being small and simple.
42 endef
43
44 define Package/cmdftp/install
45 $(INSTALL_DIR) $(1)/usr/bin
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
47 endef
48
49 $(eval $(call BuildPackage,cmdftp))