mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-27 08:31:44 +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:=12.1.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(ARCH).tar.gz
|
|
PKG_SOURCE_URL:=https://uurouter.gdl.netease.com/uuplugin/openwrt-$(ARCH)/v$(PKG_VERSION)/uu.tar.gz?
|
|
ifeq ($(ARCH),aarch64)
|
|
PKG_HASH:=f140dc99af5a67367e63c811ba5b555c748dea32c3b11c6b5bde6afc25ac960c
|
|
else ifeq ($(ARCH),arm)
|
|
PKG_HASH:=d531ff8ccb8b14abbac2d46d8cf1697114c981b059b9fb88adc19322be1ec2af
|
|
else ifeq ($(ARCH),mipsel)
|
|
PKG_HASH:=c9003945872a106fd46207afb130a6741ee832bdc3273e2257f35a092cfd966a
|
|
else ifeq ($(ARCH),x86_64)
|
|
PKG_HASH:=1dd419ac166b124f8d83e4075a65b6547ba589f976894065ce551a66313a6e84
|
|
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) $(CURDIR)/files/uugamebooster.config $(1)/etc/config/uugamebooster
|
|
$(INSTALL_BIN) $(CURDIR)/files/uugamebooster.init $(1)/etc/init.d/uugamebooster
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,uugamebooster))
|