[net] File Transfer: Moved old FTP category and combined with other file transfer...
[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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=cmdftp
11 PKG_VERSION:=0.9.7
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://download.savannah.nongnu.org/releases/$(PKG_NAME)
16 PKG_MD5SUM:=9bd0741bbb1f218be95c089dc06b2777
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/cmdftp
21 SUBMENU:=File Transfer
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=cmdftp is a tiny command line FTP client for Unix systems
25 URL:=http://www.nongnu.org/cmdftp/
26 endef
27
28 define Package/cmdftp/description
29 Features include passive mode for all data transfers, shell
30 like transparent syntax for local and remote modes, multiple
31 and recursive file transfers using wildcards, recursive copy and
32 move commands, remote and local text file viewing and editing,
33 network errors detection and resuming of currently executing
34 command, partial download resuming (if server accepts REST
35 command), tab completion for both local and remote names,
36 autologin using classic ~/.netrc approach, large file support.
37
38 cmdftp is aimed at being small and simple.
39 endef
40
41 define Package/cmdftp/install
42 $(INSTALL_DIR) $(1)/usr/bin
43 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
44 endef
45
46 $(eval $(call BuildPackage,cmdftp))