141 lines
4.7 KiB
Makefile
141 lines
4.7 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# Copyright (c) 2018-2023 Nick Peng (pymumu@gmail.com)
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=smartdns
|
|
PKG_VERSION:=47.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/pymumu/smartdns/tar.gz/Release$(PKG_VERSION)?
|
|
PKG_HASH:=0a143ee81ccb7a31b7b7b0c29d6a6ee41a54331da75477719925592af124ec97
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-Release$(PKG_VERSION)
|
|
|
|
PKG_MAINTAINER:=Nick Peng <pymumu@gmail.com>
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_CONFIG_DEPENDS:=CONFIG_PACKAGE_smartdns-ui
|
|
PKG_BUILD_DEPENDS:=PACKAGE_smartdns-ui:node/host PACKAGE_smartdns-ui:rust-bindgen/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
RUST_PKG_FEATURES:=build-release
|
|
RUST_PKG_LOCKED:=0
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include $(TOPDIR)/feeds/packages/lang/rust/rust-package.mk
|
|
|
|
MAKE_PATH:=src
|
|
MAKE_VARS+= VER=$(PKG_VERSION)
|
|
|
|
define Package/smartdns/Default
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=IP Addresses and Names
|
|
TITLE:=smartdns
|
|
URL:=https://www.github.com/pymumu/smartdns/
|
|
endef
|
|
|
|
define Package/smartdns
|
|
$(call Package/smartdns/Default)
|
|
TITLE+= server
|
|
DEPENDS:=+i386:libatomic +libopenssl
|
|
endef
|
|
|
|
define Package/smartdns/description
|
|
SmartDNS is a local DNS server which accepts DNS query requests from local network clients,
|
|
gets DNS query results from multiple upstream DNS servers concurrently, and returns the fastest IP to clients.
|
|
Unlike dnsmasq's all-servers, smartdns returns the fastest IP, and encrypt DNS queries with DoT or DoH.
|
|
endef
|
|
|
|
define Package/smartdns-ui
|
|
$(call Package/smartdns/Default)
|
|
TITLE+= dashboard
|
|
DEPENDS:=+smartdns $(RUST_ARCH_DEPENDS) @!(TARGET_x86_geode||TARGET_x86_legacy)
|
|
endef
|
|
|
|
define Package/smartdns-ui/description
|
|
A dashboard ui for smartdns server.
|
|
endef
|
|
|
|
define Package/smartdns/conffiles
|
|
/etc/config/smartdns
|
|
/etc/smartdns/address.conf
|
|
/etc/smartdns/blacklist-ip.conf
|
|
/etc/smartdns/custom.conf
|
|
/etc/smartdns/domain-block.list
|
|
/etc/smartdns/domain-forwarding.list
|
|
endef
|
|
|
|
define Download/smartdns-webui
|
|
PROTO:=git
|
|
URL:=https://github.com/pymumu/smartdns-webui.git
|
|
SOURCE_DATE:=2025-09-18
|
|
SOURCE_VERSION:=c322303eac2ebee389f4a72a002163552e552f74
|
|
MIRROR_HASH:=b239f3d994e05ad08356bf1be629cd84c2bfc6706997aafea881284cacc29545
|
|
SUBDIR:=smartdns-webui-$$$$(subst -,.,$$$$(SOURCE_DATE))~$$$$(call version_abbrev,$$$$(SOURCE_VERSION))
|
|
FILE:=$$(SUBDIR).tar.zst
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(call Build/Prepare/Default)
|
|
|
|
ifneq ($(CONFIG_PACKAGE_smartdns-ui),)
|
|
$(eval $(call Download,smartdns-webui))
|
|
$(eval $(Download/smartdns-webui))
|
|
mkdir -p $(PKG_BUILD_DIR)/smartdns-webui
|
|
zstdcat $(DL_DIR)/$(FILE) | tar -C $(PKG_BUILD_DIR)/smartdns-webui $(TAR_OPTIONS) --strip-components=1
|
|
endif
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default)
|
|
|
|
ifneq ($(CONFIG_PACKAGE_smartdns-ui),)
|
|
( \
|
|
pushd $(PKG_BUILD_DIR) ; \
|
|
pushd smartdns-webui ; \
|
|
npm install ; \
|
|
npm run build ; \
|
|
popd ; \
|
|
pushd plugin/smartdns-ui ; \
|
|
$(CARGO_PKG_CONFIG_VARS) \
|
|
MAKEFLAGS="$(PKG_JOBS)" \
|
|
TARGET_CFLAGS="$(filter-out -O%,$(TARGET_CFLAGS)) $(RUSTC_CFLAGS)" \
|
|
BINDGEN_EXTRA_CLANG_ARGS="--sysroot=$(TOOLCHAIN_ROOT_DIR)" \
|
|
cargo build -v --profile $(CARGO_PKG_PROFILE) \
|
|
$(if $(strip $(RUST_PKG_FEATURES)),--features "$(strip $(RUST_PKG_FEATURES))") \
|
|
$(if $(filter --jobserver%,$(PKG_JOBS)),,-j1) \
|
|
$(CARGO_PKG_ARGS) ; \
|
|
popd ; \
|
|
popd ; \
|
|
)
|
|
endif
|
|
endef
|
|
|
|
define Package/smartdns/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/config $(1)/etc/init.d
|
|
$(INSTALL_DIR) $(1)/etc/smartdns $(1)/etc/smartdns/domain-set $(1)/etc/smartdns/conf.d/
|
|
$(INSTALL_DIR) $(1)/etc/smartdns/ip-set $(1)/etc/smartdns/download
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/smartdns $(1)/usr/sbin/smartdns
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/package/openwrt/files/etc/init.d/smartdns $(1)/etc/init.d/smartdns
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/package/openwrt/address.conf $(1)/etc/smartdns/address.conf
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/package/openwrt/blacklist-ip.conf $(1)/etc/smartdns/blacklist-ip.conf
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/package/openwrt/custom.conf $(1)/etc/smartdns/custom.conf
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/package/openwrt/domain-block.list $(1)/etc/smartdns/domain-block.list
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/package/openwrt/domain-forwarding.list $(1)/etc/smartdns/domain-forwarding.list
|
|
$(INSTALL_CONF) $(PKG_BUILD_DIR)/package/openwrt/files/etc/config/smartdns $(1)/etc/config/smartdns
|
|
endef
|
|
|
|
define Package/smartdns-ui/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(INSTALL_DIR) $(1)/usr/share/smartdns
|
|
$(CP) $(PKG_BUILD_DIR)/plugin/smartdns-ui/target/$(RUSTC_TARGET_ARCH)/$(CARGO_PKG_PROFILE)/libsmartdns_ui.so $(1)/usr/lib/smartdns_ui.so
|
|
$(CP) $(PKG_BUILD_DIR)/smartdns-webui/out $(1)/usr/share/smartdns/wwwroot
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,smartdns))
|
|
$(eval $(call BuildPackage,smartdns-ui))
|