Config.in 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. config BR2_PACKAGE_LFTP
  2. bool "lftp"
  3. depends on BR2_USE_WCHAR
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_USE_MMU # fork()
  6. select BR2_PACKAGE_READLINE
  7. select BR2_PACKAGE_ZLIB
  8. select BR2_PACKAGE_OPENSSL if !BR2_PACKAGE_GNUTLS
  9. help
  10. LFTP is a sophisticated ftp/http client, and a file transfer
  11. program supporting a number of network protocols. Like BASH,
  12. it has job control and uses the readline library for input. It
  13. has bookmarks, a built-in mirror command, and can transfer
  14. several files in parallel.
  15. It was designed with reliability in mind.
  16. http://lftp.yar.ru/
  17. if BR2_PACKAGE_LFTP
  18. comment "Commands"
  19. config BR2_PACKAGE_LFTP_CMD_MIRROR
  20. bool "Mirror command"
  21. default y
  22. help
  23. Enable mirror command
  24. config BR2_PACKAGE_LFTP_CMD_SLEEP
  25. bool "Sleep command"
  26. default y
  27. help
  28. Enable sleep command
  29. config BR2_PACKAGE_LFTP_CMD_TORRENT
  30. bool "Torrent command"
  31. help
  32. Enable torrent command
  33. comment "Protocols"
  34. config BR2_PACKAGE_LFTP_PROTO_FISH
  35. bool "FISH protocol"
  36. help
  37. Enable FISH protocol
  38. config BR2_PACKAGE_LFTP_PROTO_FTP
  39. bool "FTP protocol"
  40. default y
  41. help
  42. Enable FTP protocol
  43. config BR2_PACKAGE_LFTP_PROTO_HTTP
  44. bool "HTTP protocol"
  45. help
  46. Enable HTTP protocol
  47. config BR2_PACKAGE_LFTP_PROTO_SFTP
  48. bool "SFTP protocol"
  49. help
  50. Enable SFTP protocol
  51. endif # BR2_PACKAGE_LFTP
  52. comment "lftp requires a toolchain w/ C++, wchar"
  53. depends on BR2_USE_MMU
  54. depends on !(BR2_USE_WCHAR && BR2_INSTALL_LIBSTDCPP)