You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.8 KiB

  1. #
  2. # Copyright (C) 2008-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=lftp
  9. PKG_VERSION:=4.9.2
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=https://lftp.tech/ftp/ \
  13. https://mirror.csclub.uwaterloo.ca/gentoo-distfiles/distfiles/
  14. PKG_HASH:=c517c4f4f9c39bd415d7313088a2b1e313b2d386867fe40b7692b83a20f0670d
  15. PKG_MAINTAINER:=Federico Di Marco <fededim@gmail.com>
  16. PKG_LICENSE:=GPL-3.0-or-later
  17. PKG_LICENSE_FILES:=COPYING
  18. PKG_CPE_ID:=cpe:/a:lftp_project:lftp
  19. PKG_INSTALL:=1
  20. PKG_BUILD_PARALLEL:=1
  21. include $(INCLUDE_DIR)/package.mk
  22. define Package/lftp
  23. SUBMENU:=File Transfer
  24. SECTION:=net
  25. CATEGORY:=Network
  26. DEPENDS:=+libncurses +libopenssl +libreadline +libstdcpp +libexpat +zlib
  27. TITLE:=a sophisticated file transfer program with command line interface.
  28. URL:=https://lftp.yar.ru/
  29. endef
  30. define Package/lftp/description
  31. LFTP is a sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. GNU Readline library is used for input.
  32. Every operation in lftp is reliable, that is any non-fatal error is handled and the operation is retried automatically. So if downloading breaks, it will be restarted from the point automatically. Even if ftp server does not support REST command, lftp will try to retrieve the file from the very beginning until the file is transferred completely. This is useful for dynamic-ip machines which change their IP addresses quite often, and for sites with very bad internet connectivity.
  33. lftp has shell-like command syntax allowing you to launch several commands in parallel in background (&). It is also possible to group commands within () and execute them in background. All background jobs are executed in the same single process. You can bring a foreground job to background with ^Z (c-z) and back with command `wait' (or `fg' which is alias to `wait'). To list running jobs, use command `jobs'. Some commands allow redirecting their output (cat, ls, ...) to file or via pipe to external command. Commands can be executed conditionally based on termination status of previous command (&&, ||).
  34. lftp has builtin mirror which can download or update a whole directory tree. There is also reverse mirror (mirror -R) which uploads or updates a directory tree on server.
  35. endef
  36. CONFIGURE_ARGS += \
  37. --without-libiconv-prefix \
  38. --without-libintl-prefix \
  39. --without-gnutls \
  40. --without-libidn2 \
  41. --without-libresolv \
  42. --with-openssl="$(STAGING_DIR)/usr" \
  43. --with-readline="$(STAGING_DIR)/usr" \
  44. --with-zlib="$(STAGING_DIR)/usr" \
  45. --disable-static
  46. define Package/lftp/install
  47. $(INSTALL_DIR) $(1)/usr/bin
  48. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lftp $(1)/usr/bin/
  49. endef
  50. $(eval $(call BuildPackage,lftp))