packages/net/clouddrive2/Makefile
2025-04-21 02:54:37 +08:00

59 lines
1.7 KiB
Makefile

#
# Copyright (C) 2017-2024
#
# This is free software, licensed under the GNU General Public License v2.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=clouddrive2
PKG_VERSION:=0.8.16
PKG_RELEASE=1
ifeq ($(ARCH),aarch64)
PKG_ARCH:=aarch64
PKG_HASH:=15c0b3fc370d3883a6f56136cee2f7580de691bc4ee7b782b47a43f4f8c31bde
else ifeq ($(ARCH),arm)
PKG_ARCH:=armv7
PKG_HASH:=s305ed96ff66db8017e54988f44fe3d868ce0d28972a678eb4f16e3ab3d5a7aa4
else ifeq ($(ARCH),x86_64)
PKG_ARCH:=x86_64
PKG_HASH:=3545da7c7947fd3b085b8b130ce674d40c4d4a7435334c8c82da07065601cc05
endif
include $(INCLUDE_DIR)/package.mk
define Package/clouddrive2
SECTION:=net
CATEGORY:=Network
DEPENDS:=@(arm||aarch64||x86_64) +fuse-utils
TITLE:=CloudDrive2
endef
define Package/clouddrive2/description
CloudDrive2 is a cloud storage mounting tool for OpenWrt.
endef
PKG_SOURCE:=clouddrive-2-linux-$(PKG_ARCH)-$(PKG_VERSION).tgz
PKG_SOURCE_URL:=https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v$(PKG_VERSION)
define Build/Prepare
$(call Build/Prepare/Default)
tar -xzvf $(DL_DIR)/clouddrive-2-linux-$(PKG_ARCH)-$(PKG_VERSION).tgz -C $(PKG_BUILD_DIR)/ --strip-components=1
endef
define Build/Compile
endef
define Package/clouddrive2/install
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/clouddrive2.init $(1)/etc/init.d/clouddrive2
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_CONF) ./files/clouddrive2.config $(1)/etc/config/clouddrive2
$(INSTALL_DIR) $(1)/usr/share/clouddrive2
$(INSTALL_BIN) $(PKG_BUILD_DIR)/clouddrive-2-linux-$(PKG_ARCH)-$(PKG_VERSION)/clouddrive $(1)/usr/share/clouddrive2/
cp -rf $(PKG_BUILD_DIR)/clouddrive-2-linux-$(PKG_ARCH)-$(PKG_VERSION)/wwwroot $(1)/usr/share/clouddrive2/
endef
$(eval $(call BuildPackage,clouddrive2))