Add wput package
SVN-Revision: 1004
This commit is contained in:
parent
1d34ee7dc0
commit
689c3906d1
@ -72,6 +72,7 @@ source "package/ulogd/Config.in"
|
|||||||
source "package/vsftpd/Config.in"
|
source "package/vsftpd/Config.in"
|
||||||
source "package/wireless-tools/Config.in"
|
source "package/wireless-tools/Config.in"
|
||||||
source "package/wol/Config.in"
|
source "package/wol/Config.in"
|
||||||
|
source "package/wput/Config.in"
|
||||||
source "package/xinetd/Config.in"
|
source "package/xinetd/Config.in"
|
||||||
|
|
||||||
comment "Libraries"
|
comment "Libraries"
|
||||||
|
@ -94,6 +94,7 @@ package-$(BR2_PACKAGE_USBUTILS) += usbutils
|
|||||||
package-$(BR2_PACKAGE_VSFTPD) += vsftpd
|
package-$(BR2_PACKAGE_VSFTPD) += vsftpd
|
||||||
package-$(BR2_PACKAGE_WIRELESS_TOOLS) += wireless-tools
|
package-$(BR2_PACKAGE_WIRELESS_TOOLS) += wireless-tools
|
||||||
package-$(BR2_PACKAGE_WOL) += wol
|
package-$(BR2_PACKAGE_WOL) += wol
|
||||||
|
package-$(BR2_PACKAGE_WPUT) += wput
|
||||||
package-$(BR2_PACKAGE_XINETD) += xinetd
|
package-$(BR2_PACKAGE_XINETD) += xinetd
|
||||||
package-$(BR2_PACKAGE_ZLIB) += zlib
|
package-$(BR2_PACKAGE_ZLIB) += zlib
|
||||||
|
|
||||||
|
9
openwrt/package/wput/Config.in
Normal file
9
openwrt/package/wput/Config.in
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
config BR2_PACKAGE_WPUT
|
||||||
|
tristate "wput - A wget-like command-line FTP client"
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
A wget-like command-line FTP client.
|
||||||
|
|
||||||
|
http://itooktheredpill.dyndns.org/wput/
|
||||||
|
|
||||||
|
|
60
openwrt/package/wput/Makefile
Normal file
60
openwrt/package/wput/Makefile
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=wput
|
||||||
|
PKG_VERSION:=0.5
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=441b2e07219f78167b29a7ac33488fff
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=http://itooktheredpill.dyndns.org/wput/
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,WPUT,wput,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
--enable-shared \
|
||||||
|
--disable-static \
|
||||||
|
--disable-g-switch \
|
||||||
|
)
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR)
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_WPUT):
|
||||||
|
install -d -m0755 $(IDIR_WPUT)/usr/bin
|
||||||
|
install -m0755 $(PKG_BUILD_DIR)/wput $(IDIR_WPUT)/usr/bin/
|
||||||
|
$(RSTRIP) $(IDIR_WPUT)
|
||||||
|
$(IPKG_BUILD) $(IDIR_WPUT) $(PACKAGE_DIR)
|
||||||
|
|
8
openwrt/package/wput/ipkg/wput.control
Normal file
8
openwrt/package/wput/ipkg/wput.control
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
Package: wput
|
||||||
|
Priority: optional
|
||||||
|
Section: net
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Nico <nthill@free.fr>
|
||||||
|
Source: http://nthill.free.fr/openwrt/sources/wput/
|
||||||
|
Description: a wget-like command-line FTP client
|
Loading…
Reference in New Issue
Block a user