diff options
author | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
---|---|---|
committer | wbx <wbx@hydrogenium.(none)> | 2009-05-17 14:41:34 +0200 |
commit | 219a6dab8995aad9ac4860cc1a84d6f3509a03a4 (patch) | |
tree | b9c0f3c43aebba2fcfef777592d0add39f2072f4 /package/wput |
Initial import
Diffstat (limited to 'package/wput')
-rw-r--r-- | package/wput/Config.in | 9 | ||||
-rw-r--r-- | package/wput/Makefile | 30 | ||||
-rw-r--r-- | package/wput/ipkg/wput.control | 4 |
3 files changed, 43 insertions, 0 deletions
diff --git a/package/wput/Config.in b/package/wput/Config.in new file mode 100644 index 000000000..33bf66aaa --- /dev/null +++ b/package/wput/Config.in @@ -0,0 +1,9 @@ +config ADK_PACKAGE_WPUT + prompt "wput.............................. A wget-like command-line FTP client" + tristate + default n + help + A wget-like command-line FTP client. + + http://itooktheredpill.dyndns.org/wput/ + diff --git a/package/wput/Makefile b/package/wput/Makefile new file mode 100644 index 000000000..aa65e209d --- /dev/null +++ b/package/wput/Makefile @@ -0,0 +1,30 @@ +# $Id$ +#- +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include ${TOPDIR}/rules.mk + +PKG_NAME:= wput +PKG_VERSION:= 0.5 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 441b2e07219f78167b29a7ac33488fff + +MASTER_SITES:= ${MASTER_SITE_SOURCEFORGE:=wput/} +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tgz + +WRKDIST= ${WRKDIR}/${PKG_NAME} + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,WPUT,wput,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) + +CONFIGURE_STYLE:= gnu +CONFIGURE_ARGS+= --disable-g-switch +BUILD_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_WPUT}/usr/bin/ + ${INSTALL_BIN} ${WRKBUILD}/wput ${IDIR_WPUT}/usr/bin/ + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/wput/ipkg/wput.control b/package/wput/ipkg/wput.control new file mode 100644 index 000000000..06d51ad76 --- /dev/null +++ b/package/wput/ipkg/wput.control @@ -0,0 +1,4 @@ +Package: wput +Priority: optional +Section: net +Description: a wget-like command-line FTP client |