From: nico Date: Mon, 24 Jul 2006 18:48:00 +0000 (+0000) Subject: port wput to buildroot-ng X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=9feab7d7cfc2ea09db3b805820fc711ef1f24d21;p=packages.git port wput to buildroot-ng git-svn-id: svn://svn.openwrt.org/openwrt/packages@4267 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/net/wput/Makefile b/net/wput/Makefile new file mode 100644 index 000000000..1de392b6a --- /dev/null +++ b/net/wput/Makefile @@ -0,0 +1,70 @@ +# +# 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_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tgz +PKG_SOURCE_URL:=@SF/wput +PKG_MD5SUM:=441b2e07219f78167b29a7ac33488fff +PKG_CAT:=zcat + +include $(INCLUDE_DIR)/package.mk + +define Package/wput + SECTION:=net + CATEGORY:=Network + TITLE:=A wget-like command-line FTP client + DESCRIPTION:=A wget-like command-line FTP client. + URL:=http://itooktheredpill.dyndns.org/wput/ +endef + +define Build/Configure + (cd $(PKG_BUILD_DIR); rm -f config.cache; \ + $(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 \ + ) +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) +endef + +define Package/wput/install + install -d -m0755 $(1)/usr/bin + install -m0755 $(PKG_BUILD_DIR)/wput $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,wput))