diff options
author | Nick Peng <pymumu@gmail.com> | 2023-05-06 22:30:24 +0800 |
---|---|---|
committer | Tianling Shen <cnsztl@gmail.com> | 2023-05-07 17:10:23 +0800 |
commit | e042899ef97595eeffa3990fc29e0a2459873a1e (patch) | |
tree | 0b9250e0c21fb1cbf508d0de52bc31fe850813c2 /net/smartdns | |
parent | 7ac5f0a3d9505ee11393c6673d9ece663d8c1b60 (diff) |
smartdns: bump to 1.2023.42
Signed-off-by: Nick Peng <pymumu@gmail.com>
Diffstat (limited to 'net/smartdns')
-rw-r--r-- | net/smartdns/Makefile | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/net/smartdns/Makefile b/net/smartdns/Makefile index 27373890e..9ce5466ec 100644 --- a/net/smartdns/Makefile +++ b/net/smartdns/Makefile @@ -1,18 +1,18 @@ # -# Copyright (c) 2018-2022 Nick Peng (pymumu@gmail.com) +# Copyright (c) 2018-2023 Nick Peng (pymumu@gmail.com) # This is free software, licensed under the GNU General Public License v3. # include $(TOPDIR)/rules.mk PKG_NAME:=smartdns -PKG_VERSION:=1.2022.38.1 +PKG_VERSION:=1.2023.42 PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=https://www.github.com/pymumu/smartdns.git -PKG_SOURCE_VERSION:=9bc857f628299573c7eca0833229d9812b1c1de4 -PKG_MIRROR_HASH:=a202b765e6ce8355335c80214819add3ed72a82426b033d7d5adf1448b415063 +PKG_SOURCE_VERSION:=ed102cda03c56e9c63040d33d4a391b56491493e +PKG_MIRROR_HASH:=366e98b92c3d22844ff5fc52c35f65c3b01e1b92fc9dc14c474823f0cc3ed11a PKG_MAINTAINER:=Nick Peng <pymumu@gmail.com> PKG_LICENSE:=GPL-3.0-or-later @@ -36,7 +36,7 @@ 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. +Unlike dnsmasq's all-servers, smartdns returns the fastest IP, and encrypt DNS queries with DoT or DoH. endef define Package/smartdns/conffiles @@ -44,10 +44,13 @@ define Package/smartdns/conffiles /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 Package/smartdns/install - $(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/config $(1)/etc/init.d $(1)/etc/smartdns + $(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_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 |