Makefile 778 B

123456789101112131415161718192021222324252627
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= wput
  5. PKG_VERSION:= 0.6.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 92b41efed4db8eb4f3443c23bf7ceecf
  8. PKG_DESCR:= a wget-like command-line FTP client
  9. PKG_SECTION:= www
  10. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=wput/}
  11. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tgz
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,WPUT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIGURE_ARGS+= --disable-g-switch \
  15. --without-ssl
  16. post-install:
  17. ${INSTALL_DIR} ${IDIR_WPUT}/usr/bin
  18. ${INSTALL_BIN} ${WRKBUILD}/wput ${IDIR_WPUT}/usr/bin/
  19. include ${TOPDIR}/mk/pkg-bottom.mk