0852dfa9ba
git-svn-id: svn://svn.openwrt.org/openwrt/packages@26066 3c298f89-4303-0410-b956-a3cf2f4a3e73
45 lines
999 B
Makefile
45 lines
999 B
Makefile
#
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=wput
|
|
PKG_VERSION:=0.6.2
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=@SF/wput
|
|
PKG_MD5SUM:=a14c4c13d91d04d6119bdc977e8a8bdf
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/wput
|
|
SUBMENU:=File Transfer
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A tiny wget-like ftp-client for uploading files
|
|
URL:=http://wput.sourceforge.net/
|
|
endef
|
|
|
|
define Package/wput/description
|
|
Wput is a tiny ftp-client, that uploads files or directories
|
|
to a remote ftp-server. Main features are: resuming,
|
|
time-stamping, wget-like interface, proxy-support and
|
|
speed-limit.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-g-switch \
|
|
--without-ssl \
|
|
|
|
define Package/wput/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wput $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,wput))
|