diff --git a/linkease/Makefile b/linkease/Makefile index 983ff622c..c227f2d62 100644 --- a/linkease/Makefile +++ b/linkease/Makefile @@ -30,7 +30,7 @@ define Package/$(PKG_NAME) TITLE:=LinkEase - the file cloud DEPENDS:=@(arm||x86_64||aarch64) +ffmpeg-remux PKGARCH:=all - URL:=https://www.ddnsto.com/linkease/ + URL:=https://www.linkease.com/ endef define Package/$(PKG_NAME)/description diff --git a/linkmount/Makefile b/linkmount/Makefile new file mode 100644 index 000000000..192ed0977 --- /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.2 +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:=95bfb924238035cf3db8bbf8bf63ed0bcd731d0232b1859af2b9ae5eeac14c73 + +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))) +