Move buildroot to bsp directory.
This commit is contained in:
19
bsp/buildroot/package/sshfs/Config.in
Normal file
19
bsp/buildroot/package/sshfs/Config.in
Normal file
@@ -0,0 +1,19 @@
|
||||
config BR2_PACKAGE_SSHFS
|
||||
bool "sshfs (FUSE)"
|
||||
select BR2_PACKAGE_LIBFUSE
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
select BR2_PACKAGE_OPENSSH
|
||||
depends on BR2_USE_WCHAR # glib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libfuse, glib2
|
||||
depends on BR2_USE_MMU # libfuse, glib2
|
||||
depends on !BR2_STATIC_LIBS # libfuse
|
||||
help
|
||||
FUSE filesystem client based on the SSH File Transfer Protocol.
|
||||
|
||||
https://github.com/libfuse/sshfs
|
||||
|
||||
comment "sshfs needs a toolchain w/ wchar, threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
2
bsp/buildroot/package/sshfs/sshfs.hash
Normal file
2
bsp/buildroot/package/sshfs/sshfs.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally computed
|
||||
sha256 e9171452e5d0150b9c6a2158fd2e2dcefb5d5d03ba4d208949e00a3a46c6e63e sshfs-fuse-2.5.tar.gz
|
||||
17
bsp/buildroot/package/sshfs/sshfs.mk
Normal file
17
bsp/buildroot/package/sshfs/sshfs.mk
Normal file
@@ -0,0 +1,17 @@
|
||||
################################################################################
|
||||
#
|
||||
# sshfs
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SSHFS_VERSION = 2.5
|
||||
SSHFS_SITE = https://github.com/libfuse/sshfs/releases/download/sshfs_$(subst .,_,$(SSHFS_VERSION))
|
||||
SSHFS_SOURCE = sshfs-fuse-$(SSHFS_VERSION).tar.gz
|
||||
SSHFS_LICENSE = GPLv2
|
||||
SSHFS_LICENSE_FILES = COPYING
|
||||
SSHFS_DEPENDENCIES = \
|
||||
libglib2 libfuse openssh \
|
||||
$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \
|
||||
$(if $(BR2_ENABLE_LOCALE),,libiconv)
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user