1config BR2_PACKAGE_NCFTP 2 bool "ncftp" 3 # fork() 4 depends on BR2_USE_MMU 5 help 6 NcFTP Client (also known as just NcFTP) is a set of FREE 7 application programs implementing the File Transfer Protocol 8 (FTP). 9 10 http://www.ncftp.com/ncftp/ 11 12if BR2_PACKAGE_NCFTP 13 14config BR2_PACKAGE_NCFTP_GET 15 bool "ncftpget" 16 default y 17 18config BR2_PACKAGE_NCFTP_PUT 19 bool "ncftpput" 20 default y 21 22config BR2_PACKAGE_NCFTP_LS 23 bool "ncftpls" 24 default y 25 26config BR2_PACKAGE_NCFTP_BATCH 27 bool "ncftpbatch/ncftpspooler" 28 default y 29 30config BR2_PACKAGE_NCFTP_BOOKMARKS 31 bool "ncftpbookmarks" 32 select BR2_PACKAGE_NCURSES 33 34endif 35