From 5a4833fdeee84ad6015acd89da72ce84adb0a27c Mon Sep 17 00:00:00 2001 From: ElonH Date: Mon, 29 Jun 2020 23:49:53 +0800 Subject: [PATCH] feat(fuse): add dependence of fuse-utils Rclone can mount cloud storage by fuse-utils --- package/ctcgfw/luci-app-rclone/Makefile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/package/ctcgfw/luci-app-rclone/Makefile b/package/ctcgfw/luci-app-rclone/Makefile index acc4699202..a51546bb3a 100644 --- a/package/ctcgfw/luci-app-rclone/Makefile +++ b/package/ctcgfw/luci-app-rclone/Makefile @@ -10,13 +10,14 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI support for Rclone -LUCI_DEPENDS:=+rclone +fuse-utils \ +LUCI_DEPENDS:=+rclone \ +PACKAGE_luci-app-rclone_INCLUDE_rclone-webui:rclone-webui-react \ - +PACKAGE_luci-app-rclone_INCLUDE_rclone-ng:rclone-ng + +PACKAGE_luci-app-rclone_INCLUDE_rclone-ng:rclone-ng \ + +PACKAGE_luci-app-rclone_INCLUDE_fuse-utils:fuse-utils LUCI_PKGARCH:=all PKG_NAME:=luci-app-rclone -PKG_VERSION:=1.4.0 -PKG_RELEASE:=2 +PKG_VERSION:=1.4.1 +PKG_RELEASE:=1 PKG_LICENSE:=GPLv3.0+ PKG_MAINTAINER:=ElonH @@ -44,7 +45,11 @@ config PACKAGE_luci-app-rclone_INCLUDE_rclone-webui default y config PACKAGE_luci-app-rclone_INCLUDE_rclone-ng - bool "Include rclone-ng" + bool "Include rclone-ng (another webui)" + default y + +config PACKAGE_luci-app-rclone_INCLUDE_fuse-utils + bool "Include fuse-utils (mount cloud storage)" default y endef