mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-01 07:31:58 +08:00
65 lines
1.8 KiB
Makefile
65 lines
1.8 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uugamebooster
|
|
PKG_VERSION:=8.7.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(ARCH).tar.gz
|
|
PKG_SOURCE_URL:=https://uu.gdl.netease.com/uuplugin/openwrt-$(ARCH)/v$(PKG_VERSION)/uu.tar.gz?
|
|
ifeq ($(ARCH),aarch64)
|
|
PKG_HASH:=f6a3878a123e4d0803545e2507c7cb8fceb719ad69ec707136c5b46044b45489
|
|
else ifeq ($(ARCH),arm)
|
|
PKG_HASH:=abfd9c8cb9e6b50f263d0375793ffec7f214f42bd274faaeac23386dd2701a1e
|
|
else ifeq ($(ARCH),mipsel)
|
|
PKG_HASH:=85446bc132c422bfa8a00ae78ced19634e373eab2163b2319aa1d6b67b13de7d
|
|
else ifeq ($(ARCH),x86_64)
|
|
PKG_HASH:=87c72206bfe1c42ab89d6f5083e5c1cce1e5b6d2a191dea07532978bc3847169
|
|
endif
|
|
|
|
PKG_LICENSE:=Proprietary
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
STRIP:=true
|
|
|
|
TAR_CMD=$(HOST_TAR) -C $(1)/ $(TAR_OPTIONS)
|
|
|
|
define Package/uugamebooster
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=@(aarch64||arm||mipsel||x86_64) +kmod-tun
|
|
TITLE:=NetEase UU Game Booster
|
|
URL:=https://uu.163.com
|
|
endef
|
|
|
|
define Package/uugamebooster/description
|
|
NetEase's UU Game Booster Accelerates Triple-A Gameplay and Market.
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/uugamebooster/conffiles
|
|
/.uuplugin_uuid
|
|
/usr/share/uugamebooster/uu.conf
|
|
endef
|
|
|
|
define Package/uugamebooster/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/uuplugin $(1)/usr/bin/uugamebooster
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/xtables-nft-multi $(1)/usr/bin/xtables-nft-multi
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/uugamebooster
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/uu.conf $(1)/usr/share/uugamebooster/uu.conf
|
|
|
|
$(INSTALL_DIR) $(1)/etc/config $(1)/etc/init.d
|
|
$(INSTALL_CONF) ./files/uugamebooster.config $(1)/etc/config/uugamebooster
|
|
$(INSTALL_BIN) ./files/uugamebooster.init $(1)/etc/init.d/uugamebooster
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,uugamebooster))
|