mirror of
https://github.com/kenzok8/small-package
synced 2025-01-09 04:37:59 +08:00
121 lines
3.5 KiB
Makefile
121 lines
3.5 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=naiveproxy
|
|
PKG_VERSION:=118.0.5993.65-1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/klzgrad/naiveproxy/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=d97193d82e346ec2f753151cee52d00495e2df7688d60a5b4395b8cd39399734
|
|
|
|
PKG_LICENSE:=BSD 3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
|
|
|
PKG_BUILD_DEPENDS:=gn/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
ifneq ($(CONFIG_CPU_TYPE)," ")
|
|
CPU_TYPE:=$(word 1, $(subst +," ,$(CONFIG_CPU_TYPE)))
|
|
CPU_SUBTYPE:=$(word 2, $(subst +, ",$(CONFIG_CPU_TYPE)))
|
|
ifeq ($(CPU_SUBTYPE),)
|
|
CPU_SUBTYPE:=""
|
|
endif
|
|
else
|
|
CPU_TYPE:=""
|
|
CPU_SUBTYPE:=""
|
|
endif
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/naiveproxy
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=Web Servers/Proxies
|
|
TITLE:=Make a fortune quietly
|
|
URL:=https://github.com/klzgrad/naiveproxy
|
|
DEPENDS:=@!(arc||mips||mips64||powerpc||TARGET_gemini) +libatomic
|
|
endef
|
|
|
|
define Package/naiveproxy/description
|
|
NaïveProxy uses Chrome's network stack to camouflage traffic with strong
|
|
censorship resistance and low detectability. Reusing Chrome's stack also
|
|
ensures best practices in performance and security.
|
|
endef
|
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
|
export CCACHE_SLOPPINESS=time_macros
|
|
export CCACHE_BASEDIR=$(PKG_BUILD_DIR)/src
|
|
export CCACHE_CPP2=yes
|
|
export naive_ccache_flags=cc_wrapper="$(CCACHE)"
|
|
endif
|
|
|
|
CLANG_VER:=17-init-16420-g0c545a44-8
|
|
CLANG_FILE:=clang-llvmorg-$(CLANG_VER).tgz
|
|
define Download/CLANG
|
|
URL:=https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64
|
|
URL_FILE:=$(CLANG_FILE)
|
|
FILE:=$(CLANG_FILE)
|
|
HASH:=3c84d6673efd5a0d40785c9fd510ce347c9a4acf9ffb3b503c707857f5ca8398
|
|
endef
|
|
|
|
PGO_VER:=5993-1696528594-5b0dc009ef20f14165590ea16444c1ee3dca372e
|
|
PGO_FILE:=chrome-linux-$(PGO_VER).profdata
|
|
define Download/PGO_PROF
|
|
URL:=https://storage.googleapis.com/chromium-optimization-profiles/pgo_profiles
|
|
URL_FILE:=$(PGO_FILE)
|
|
FILE:=$(PGO_FILE)
|
|
HASH:=1d6b4d7d2dab529ae179097e508d63fc28fd459ee3fe7511e5ed5b329707e0b5
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(call Build/Prepare/Default)
|
|
|
|
( \
|
|
pushd $(PKG_BUILD_DIR)/src ; \
|
|
mkdir -p "chrome/build/pgo_profiles" ; \
|
|
$(CP) "$(DL_DIR)/$(PGO_FILE)" "chrome/build/pgo_profiles" ; \
|
|
mkdir -p "third_party/llvm-build/Release+Asserts" ; \
|
|
$(TAR) -xzf "$(DL_DIR)/$(CLANG_FILE)" -C "third_party/llvm-build/Release+Asserts" ; \
|
|
echo -e "llvmorg-$(CLANG_VER)" > "third_party/llvm-build/Release+Asserts/cr_build_revision" ; \
|
|
popd ; \
|
|
)
|
|
endef
|
|
|
|
define Build/Configure
|
|
( \
|
|
pushd "$(PKG_BUILD_DIR)/src" ; \
|
|
. ../init_env.sh "$(ARCH)" $(CPU_TYPE) $(CPU_SUBTYPE) "$(TOOLCHAIN_DIR)" ; \
|
|
export naive_flags+=" $$$${naive_ccache_flags}" ; \
|
|
mkdir -p "out" ; \
|
|
gn gen "out/Release" --args="$$$${naive_flags}" --script-executable="$(PYTHON)" ; \
|
|
popd ; \
|
|
)
|
|
endef
|
|
|
|
define Build/Compile
|
|
+$(NINJA) -C "$(PKG_BUILD_DIR)/src/out/Release" naive
|
|
endef
|
|
|
|
define Package/naiveproxy/conffiles
|
|
/etc/config/naiveproxy
|
|
endef
|
|
|
|
define Package/naiveproxy/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/out/Release/naive $(1)/usr/bin/naive
|
|
$(INSTALL_DIR) $(1)/etc/config $(1)/etc/init.d
|
|
$(INSTALL_CONF) $(CURDIR)/files/naiveproxy.config $(1)/etc/config/naiveproxy
|
|
$(INSTALL_BIN) $(CURDIR)/files/naiveproxy.init $(1)/etc/init.d/naiveproxy
|
|
endef
|
|
|
|
$(eval $(call Download,CLANG))
|
|
$(eval $(call Download,PGO_PROF))
|
|
|
|
$(eval $(call BuildPackage,naiveproxy))
|