123456789101112131415161718192021222324252627 |
- # 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.6.1
- PKG_RELEASE:= 1
- PKG_MD5SUM:= 92b41efed4db8eb4f3443c23bf7ceecf
- PKG_DESCR:= a wget-like command-line FTP client
- PKG_SECTION:= www
- PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=wput/}
- DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tgz
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,WPUT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIGURE_ARGS+= --disable-g-switch \
- --without-ssl
- post-install:
- ${INSTALL_DIR} ${IDIR_WPUT}/usr/bin
- ${INSTALL_BIN} ${WRKBUILD}/wput ${IDIR_WPUT}/usr/bin/
- include ${TOPDIR}/mk/pkg-bottom.mk
|