update buildroot to 2017.02.11
This commit is contained in:
33
bsp/buildroot-2017.02.11/package/ncftp/Config.in
Normal file
33
bsp/buildroot-2017.02.11/package/ncftp/Config.in
Normal file
@@ -0,0 +1,33 @@
|
||||
config BR2_PACKAGE_NCFTP
|
||||
bool "ncftp"
|
||||
# fork()
|
||||
depends on BR2_USE_MMU
|
||||
help
|
||||
NcFTP Client (also known as just NcFTP) is a set of FREE application
|
||||
programs implementing the File Transfer Protocol (FTP).
|
||||
|
||||
http://www.ncftp.com/ncftp/
|
||||
|
||||
if BR2_PACKAGE_NCFTP
|
||||
|
||||
config BR2_PACKAGE_NCFTP_GET
|
||||
bool "ncftpget"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_NCFTP_PUT
|
||||
bool "ncftpput"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_NCFTP_LS
|
||||
bool "ncftpls"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_NCFTP_BATCH
|
||||
bool "ncftpbatch/ncftpspooler"
|
||||
default y
|
||||
|
||||
config BR2_PACKAGE_NCFTP_BOOKMARKS
|
||||
bool "ncftpbookmarks"
|
||||
select BR2_PACKAGE_NCURSES
|
||||
|
||||
endif
|
||||
2
bsp/buildroot-2017.02.11/package/ncftp/ncftp.hash
Normal file
2
bsp/buildroot-2017.02.11/package/ncftp/ncftp.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed:
|
||||
sha256 7abd3e8f848f0efb4bb6a4bc5da58a59524d4378fc8d70a52adb0fe1fd00b89d ncftp-3.2.6-src.tar.xz
|
||||
54
bsp/buildroot-2017.02.11/package/ncftp/ncftp.mk
Normal file
54
bsp/buildroot-2017.02.11/package/ncftp/ncftp.mk
Normal file
@@ -0,0 +1,54 @@
|
||||
################################################################################
|
||||
#
|
||||
# ncftp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
NCFTP_VERSION = 3.2.6
|
||||
NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.xz
|
||||
NCFTP_SITE = ftp://ftp.ncftp.com/ncftp
|
||||
NCFTP_TARGET_BINS = ncftp
|
||||
NCFTP_LICENSE = Clarified Artistic License
|
||||
NCFTP_LICENSE_FILES = doc/LICENSE.txt
|
||||
|
||||
NCFTP_DEPENDENCIES = host-autoconf
|
||||
NCFTP_CONF_OPTS = --disable-ccdv
|
||||
|
||||
# The bundled configure script is generated by autoconf 2.13 and doesn't
|
||||
# detect cross-compilation correctly. Therefore, we have to regenerate it.
|
||||
# We need to pass -I because of the non-standard m4 directory name, and
|
||||
# none of the other autotools are used, so the below is the easiest.
|
||||
define NCFTP_RUN_AUTOCONF
|
||||
(cd $(@D); $(HOST_DIR)/usr/bin/autoconf -I$(@D)/autoconf_local/)
|
||||
endef
|
||||
NCFTP_PRE_CONFIGURE_HOOKS += NCFTP_RUN_AUTOCONF
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCFTP_GET),y)
|
||||
NCFTP_TARGET_BINS += ncftpget
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCFTP_PUT),y)
|
||||
NCFTP_TARGET_BINS += ncftpput
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCFTP_LS),y)
|
||||
NCFTP_TARGET_BINS += ncftpls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCFTP_BATCH),y)
|
||||
NCFTP_TARGET_BINS += ncftpbatch
|
||||
NCFTP_INSTALL_NCFTP_BATCH = \
|
||||
ln -sf /usr/bin/ncftpbatch $(TARGET_DIR)/usr/bin/ncftpspooler
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_NCFTP_BOOKMARKS),y)
|
||||
NCFTP_TARGET_BINS += ncftpbookmarks
|
||||
NCFTP_DEPENDENCIES += ncurses
|
||||
endif
|
||||
|
||||
define NCFTP_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -m 0755 $(addprefix $(NCFTP_DIR)/bin/, $(NCFTP_TARGET_BINS)) $(TARGET_DIR)/usr/bin
|
||||
$(NCFTP_INSTALL_NCFTP_BATCH)
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user