From f732f43405c388faa6368b3871b4fdbae82d3664 Mon Sep 17 00:00:00 2001 From: actions-user Date: Tue, 18 Feb 2025 09:53:35 +0800 Subject: [PATCH] update 2025-02-18 09:53:35 --- linkmount/Makefile | 53 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 linkmount/Makefile diff --git a/linkmount/Makefile b/linkmount/Makefile new file mode 100644 index 00000000..07a168d4 --- /dev/null +++ b/linkmount/Makefile @@ -0,0 +1,53 @@ +# +# Copyright (C) 2017-2020 Ian Leonard +# Copyright (C) 2018 Ted Hess +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_ARCH_LINKEASE:=$(ARCH) + +PKG_NAME:=linkmount +PKG_VERSION:=1.0.3 +PKG_RELEASE:=$(PKG_ARCH_LINKEASE)-2 + +PKG_SOURCE:=$(PKG_NAME)-binary-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://fw0.koolcenter.com/binary/LinkEase/AutoUpgrade/linkmount/ +PKG_HASH:=b8a5b99751cdd3dd84ac75c94e3cff5b898f910c86f12b4c7ec74dc8b3c510cb + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-binary-$(PKG_VERSION) + +PKG_BUILD_PARALLEL:=1 +PKG_USE_MIPS16:=0 + +include $(INCLUDE_DIR)/package.mk + +define Package/$(PKG_NAME) + SECTION:=net + CATEGORY:=Network + SUBMENU:=Web Servers/Proxies + TITLE:=LinkMount - the file cloud + URL:=https://www.linkease.com/ +endef + +define Package/$(PKG_NAME)/description + LinkMount is used by LinkEase +endef + +define Build/Configure +endef + +define Build/Compile +endef + +define Package/$(PKG_NAME)/install + $(INSTALL_DIR) $(1)/usr/sbin/linkmount + $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_ARCH_LINKEASE)/bin/linkmount_bin $(1)/usr/sbin/linkmount/linkmount_bin + $(CP) $(PKG_BUILD_DIR)/$(PKG_ARCH_LINKEASE)/bin/lib $(1)/usr/sbin/linkmount/lib +endef + +$(eval $(call BuildPackage,$(PKG_NAME))) +