mirror of
https://github.com/kenzok8/small-package
synced 2025-01-09 04:37:59 +08:00
86 lines
2.1 KiB
Makefile
86 lines
2.1 KiB
Makefile
#
|
|
# Copyright (C) 2021 KFERMercer <KFER.Mercer@gmail.com>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v3.
|
|
#
|
|
|
|
#
|
|
# to get the latest version & md5 checksum:
|
|
# curl -L -s -k -H "Accept:text/plain" "http://router.uu.163.com/api/plugin?type=openwrt-$(UU_ARCH)"
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=uugamebooster
|
|
PKG_VERSION:=v3.15.0
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
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
|
|
|
|
ifeq ($(ARCH),arm)
|
|
UU_ARCH:=arm
|
|
PKG_MD5SUM:=0b6a8d04f0b72d9270da295e3eb0d924
|
|
endif
|
|
|
|
ifeq ($(ARCH),aarch64)
|
|
UU_ARCH:=aarch64
|
|
PKG_MD5SUM:=22ac7bac2e3c517b0120f182b6d406ad
|
|
endif
|
|
|
|
ifeq ($(ARCH),mipsel)
|
|
UU_ARCH:=mipsel
|
|
PKG_MD5SUM:=de7b87ef7c713d9dd97423d0131eeafd
|
|
endif
|
|
|
|
ifeq ($(ARCH),x86_64)
|
|
UU_ARCH:=x86_64
|
|
PKG_MD5SUM:=983e1873e74c06690e32bb7bae12883e
|
|
endif
|
|
|
|
PKG_SOURCE_URL:=https://uu.gdl.netease.com/uuplugin/openwrt-$(UU_ARCH)/$(PKG_VERSION)/uu.tar.gz?
|
|
PKG_SOURCE:=$(PKG_NAME)-$(UU_ARCH)-$(PKG_VERSION).tar.gz
|
|
|
|
STRIP:=true
|
|
|
|
UNTAR_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)/$(PKG_NAME)-$(UU_ARCH)-bin
|
|
|
|
define Build/Prepare
|
|
mkdir -vp $(UNTAR_DIR)
|
|
tar -zxvf $(DL_DIR)/$(PKG_SOURCE) -C $(UNTAR_DIR)
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/uugamebooster/conffiles
|
|
/root/.uuplugin_uuid
|
|
endef
|
|
|
|
define Package/uugamebooster/install
|
|
# $(INSTALL_DIR) $(1)/etc/init.d
|
|
# $(INSTALL_BIN) ./files/uugamebooster.init $(1)/etc/init.d/uuplugin
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/uugamebooster
|
|
$(INSTALL_BIN) $(UNTAR_DIR)/uuplugin $(1)/usr/share/uugamebooster/uuplugin
|
|
$(INSTALL_CONF) $(UNTAR_DIR)/uu.conf $(1)/usr/share/uugamebooster/uu.conf
|
|
|
|
# not finish yet:
|
|
# $(INSTALL_DIR) $(1)/usr/bin
|
|
# $(INSTALL_BIN) ./files/uugamebooster-update $(1)/usr/bin/uugamebooster
|
|
# $(LN) $(1)/usr/bin/uugamebooster/uugamebooster-update $(1)/usr/bin/uugamebooster-update
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,uugamebooster))
|