update 2022-12-23 08:45:11
This commit is contained in:
parent
fadaa21768
commit
fbcc7be796
|
@ -21,7 +21,7 @@ PKG_CONFIG_DEPENDS:= \
|
|||
CONFIG_UNBLOCKNETEASEMUSIC_GO_COMPRESS_UPX
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(firstword $(subst -, ,$(PKG_NAME)))-$(PKG_VERSION)
|
||||
PKG_BUILD_DEPENDS:=golang/host
|
||||
PKG_BUILD_DEPENDS:=golang/host upx/host
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_USE_MIPS16:=0
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ PKG_NAME:=natflow
|
|||
PKG_VERSION:=20221223
|
||||
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/ptpt52/natflow/tar.gz/$(PKG_VERSION)?
|
||||
PKG_HASH:=d7ef157123c15e7d918346867c225f4b1849b31526f97a76fdd99e734ac582d7
|
||||
PKG_HASH:=97f269fd807b381d0ae93a4de7c28f47f2a8f4d8e3c0b2411f000c4b73ae3486
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
|
||||
PKG_MAINTAINER:=Chen Minqiang <ptpt52@gmail.com>
|
||||
|
|
|
@ -14,6 +14,7 @@ disable_gro() {
|
|||
}
|
||||
|
||||
start() {
|
||||
test -c /dev/natflow_ctl || return 0
|
||||
disable_gro
|
||||
hwnat_wed=$(uci get natflow.main.hwnat_wed 2>/dev/null || echo 0)
|
||||
hwnat=$(uci get natflow.main.hwnat 2>/dev/null || echo 0)
|
||||
|
@ -38,6 +39,7 @@ start() {
|
|||
}
|
||||
|
||||
stop() {
|
||||
test -c /dev/natflow_ctl || return 0
|
||||
echo disabled=1 >/dev/natflow_ctl
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ PKG_CONFIG_DEPENDS:= \
|
|||
CONFIG_NPC_COMPRESS_UPX \
|
||||
CONFIG_NPS_COMPRESS_UPX
|
||||
|
||||
PKG_BUILD_DEPENDS:=golang/host
|
||||
PKG_BUILD_DEPENDS:=golang/host upx/host
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
PKG_USE_MIPS16:=0
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=uugamebooster
|
||||
PKG_VERSION:=v3.3.2
|
||||
PKG_VERSION:=v3.6.2
|
||||
PKG_RELEASE:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
@ -31,22 +31,22 @@ endef
|
|||
|
||||
ifeq ($(ARCH),arm)
|
||||
UU_ARCH:=arm
|
||||
PKG_MD5SUM:=959c2b26a9e460fac5a3166151290e5e
|
||||
PKG_MD5SUM:=ee720928879208091c509c685f21db05
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),aarch64)
|
||||
UU_ARCH:=aarch64
|
||||
PKG_MD5SUM:=62fe6b4f406971aaaa5426fd9a314250
|
||||
PKG_MD5SUM:=279ec2a24f2765669aee8f57cb47e30d
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),mipsel)
|
||||
UU_ARCH:=mipsel
|
||||
PKG_MD5SUM:=4b2dc4b37e04b859535475afb1a35d59
|
||||
PKG_MD5SUM:=d2176e47a783e0be9bbecbceb606470b
|
||||
endif
|
||||
|
||||
ifeq ($(ARCH),x86_64)
|
||||
UU_ARCH:=x86_64
|
||||
PKG_MD5SUM:=f22d5f2810eabe67ca395725c0ad07b4
|
||||
PKG_MD5SUM:=3656d9cedbe369be7adc059248a9d4bd
|
||||
endif
|
||||
|
||||
PKG_SOURCE_URL:=https://uu.gdl.netease.com/uuplugin/openwrt-$(UU_ARCH)/$(PKG_VERSION)/uu.tar.gz?
|
||||
|
|
Loading…
Reference in New Issue