Category reorganization
[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 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 URL:=http://cmdftp.sourceforge.net/
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))