59 lines
1.9 KiB
Makefile
59 lines
1.9 KiB
Makefile
# SPDX-Identifier-License: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
ifeq ($(ARCH),aarch64)
|
|
PKG_ARCH_VERYSYNC:=arm64
|
|
PKG_HASH_VERYSYNC:=113b1098434c9657e51d95a86f70436ff55db291cca1094bc65e911642424367
|
|
else ifeq ($(ARCH),arm)
|
|
PKG_ARCH_VERYSYNC:=arm
|
|
PKG_HASH_VERYSYNC:=6eb2a8e41dcdaacfecc20c13ef6b7805176dad6a410d38bf65a962bc0f7f8554
|
|
else ifeq ($(ARCH),i386)
|
|
PKG_ARCH_VERYSYNC:=386
|
|
PKG_HASH_VERYSYNC:=d84b71cc7ef0db95bf0f6dc3d38884b3856cc36ae1ac1f430c35cdd033cc7c16
|
|
else ifeq ($(ARCH),mips)
|
|
PKG_ARCH_VERYSYNC:=mips
|
|
PKG_HASH_VERYSYNC:=54d8fe303e3b51ae5078fe74e69ab64d102334e55ee257d9eec7aef13a21d911
|
|
else ifeq ($(ARCH),mipsel)
|
|
PKG_ARCH_VERYSYNC:=mipsle
|
|
PKG_HASH_VERYSYNC:=7edc4eae4a1941d8a52fce2506d599af6f207498a3d8cabe819f023d0df15e2f
|
|
else ifeq ($(ARCH),powerpc64)
|
|
PKG_ARCH_VERYSYNC:=ppc64
|
|
PKG_HASH_VERYSYNC:=c89e670b31123b240fc5e4be15cb7e836e8584b5a955efea5fca5b4f9d009ea1
|
|
else ifeq ($(ARCH),x86_64)
|
|
PKG_ARCH_VERYSYNC:=amd64
|
|
PKG_HASH_VERYSYNC:=6214cd485bfc40a8c53a3c53e900a0fa2e629d5137345f3ad2195bd9e0f47fba
|
|
endif
|
|
|
|
PKG_NAME:=verysync
|
|
PKG_VERSION:=2.14.0
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-linux-$(PKG_ARCH_VERYSYNC)-v$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=http://dl.verysync.com/releases/v$(PKG_VERSION)/ \
|
|
http://dl-cn.verysync.com/releases/v$(PKG_VERSION)/
|
|
PKG_HASH:=$(PKG_HASH_VERYSYNC)
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-linux-$(PKG_ARCH_VERYSYNC)-v$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/verysync
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A efficient data transmission tool
|
|
URL:=http://www.verysync.com
|
|
DEPENDS:=@(aarch64||arm||i386||mips||mipsel||powerpc64||x86_64)
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/verysync/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/verysync $(1)/usr/bin/verysync
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,verysync))
|