mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
73 lines
1.9 KiB
Makefile
73 lines
1.9 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-only
|
|
#
|
|
# Copyright (C) 2021 ImmortalWrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=dnsproxy
|
|
PKG_VERSION:=0.39.11
|
|
PKG_RELEASE:=$(AUTORELESE)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/AdguardTeam/dnsproxy/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=e1e7ed0fedfbdd6c6c7296b180767abe754a4154512acf2204e9ff74decf895d
|
|
|
|
PKG_MAINTAINER:=Tianling Shen <cnsztl@immortalwrt.org>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_CONFIG_DEPENDS:= \
|
|
CONFIG_DNSPROXY_COMPRESS_GOPROXY \
|
|
CONFIG_DNSPROXY_COMPRESS_UPX
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_USE_MIPS16:=0
|
|
|
|
GO_PKG:=github.com/AdguardTeam/dnsproxy
|
|
GO_PKG_LDFLAGS:=-s -w
|
|
GO_PKG_LDFLAGS_X:=main.VersionString=v$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(TOPDIR)/feeds/packages/lang/golang/golang-package.mk
|
|
|
|
define Package/dnsproxy/config
|
|
config DNSPROXY_COMPRESS_GOPROXY
|
|
bool "Compiling with GOPROXY proxy"
|
|
default n
|
|
|
|
config DNSPROXY_COMPRESS_UPX
|
|
bool "Compress executable files with UPX"
|
|
default y
|
|
endef
|
|
|
|
ifeq ($(CONFIG_DNSPROXY_COMPRESS_GOPROXY),y)
|
|
export GO111MODULE=on
|
|
export GOPROXY=https://goproxy.baidu.com
|
|
endif
|
|
|
|
define Package/dnsproxy
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=IP Addresses and Names
|
|
TITLE:=Simple DNS proxy with DoH, DoT, DoQ and DNSCrypt support
|
|
URL:=https://github.com/github.com/AdguardTeam/dnsproxy
|
|
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle
|
|
endef
|
|
|
|
define Package/dnsproxy/description
|
|
A simple DNS proxy server that supports all existing DNS protocols including
|
|
DNS-over-TLS, DNS-over-HTTPS, DNSCrypt, and DNS-over-QUIC.Moreover, it can
|
|
work as a DNS-over-HTTPS, DNS-over-TLS or DNS-over-QUIC server.
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call GoPackage/Build/Compile)
|
|
ifeq ($(CONFIG_DNSPROXY_COMPRESS_UPX),y)
|
|
$(STAGING_DIR_HOST)/bin/upx --lzma --best $(GO_PKG_BUILD_BIN_DIR)/dnsproxy
|
|
endif
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,dnsproxy))
|
|
$(eval $(call BuildPackage,dnsproxy))
|