Add gw6c and make it link against uclibcxx (#2125)
[openwrt/svn-archive/archive.git] / net / wput / Makefile
1 #
2 # Copyright (C) 2007-2008 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:=wput
12 PKG_VERSION:=0.6.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
16 PKG_SOURCE_URL:=@SF/wput
17 PKG_MD5SUM:=92b41efed4db8eb4f3443c23bf7ceecf
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/wput
22 SUBMENU:=FTP
23 SECTION:=net
24 CATEGORY:=Network
25 TITLE:=A tiny wget-like ftp-client for uploading files
26 URL:=http://wput.sourceforge.net/
27 endef
28
29 define Package/wput/description
30 Wput is a tiny ftp-client, that uploads files or directories
31 to a remote ftp-server. Main features are: resuming,
32 time-stamping, wget-like interface, proxy-support and
33 speed-limit.
34 endef
35
36 CONFIGURE_ARGS += \
37 --disable-g-switch \
38 --without-ssl \
39
40 define Package/wput/install
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/wput $(1)/usr/bin/
43 endef
44
45 $(eval $(call BuildPackage,wput))