Update darkstat to 3.0.708 (#2885)
[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.7
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:=9bd0741bbb1f218be95c089dc06b2777
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/cmdftp
22 SUBMENU:=FTP
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=cmdftp is a tiny command line FTP client for Unix systems
26 URL:=http://www.nongnu.org/cmdftp/
27 endef
28
29 define Package/cmdftp/description
30 Features include passive mode for all data transfers, shell
31 like transparent syntax for local and remote modes, multiple
32 and recursive file transfers using wildcards, recursive copy and
33 move commands, remote and local text file viewing and editing,
34 network errors detection and resuming of currently executing
35 command, partial download resuming (if server accepts REST
36 command), tab completion for both local and remote names,
37 autologin using classic ~/.netrc approach, large file support.
38
39 cmdftp is aimed at being small and simple.
40 endef
41
42 define Package/cmdftp/install
43 $(INSTALL_DIR) $(1)/usr/bin
44 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/
45 endef
46
47 $(eval $(call BuildPackage,cmdftp))