474a5591f9
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9020 3c298f89-4303-0410-b956-a3cf2f4a3e73
48 lines
907 B
Makefile
48 lines
907 B
Makefile
#
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# $Id$
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=wput
|
|
PKG_VERSION:=0.5
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
|
PKG_SOURCE_URL:=@SF/wput
|
|
PKG_MD5SUM:=441b2e07219f78167b29a7ac33488fff
|
|
PKG_CAT:=zcat
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/wput
|
|
SUBMENU:=FTP
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A wget-like command-line FTP client
|
|
URL:=http://itooktheredpill.dyndns.org/wput/
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--disable-g-switch \
|
|
)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
|
endef
|
|
|
|
define Package/wput/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wput $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,wput))
|