-
Notifications
You must be signed in to change notification settings - Fork 19.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fd6ee2a
commit 2252757
Showing
1 changed file
with
75 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# | ||
# Copyright (C) 2018-2020 Ruilin Peng (Nick) <pymumu@gmail.com>. | ||
# | ||
# smartdns is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation, either version 3 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# smartdns is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_NAME:=smartdns | ||
|
||
PKG_SOURCE_PROTO:=git | ||
PKG_SOURCE_URL:=https://github.com/pymumu/smartdns.git | ||
|
||
PKG_REV:=d6c34658af0d4aac94655a139030c5ec12884754 | ||
PKG_VERSION:=2019.12.15 | ||
PKG_RELEASE:=2 | ||
PKG_LICENSE:=GPL-3.0 | ||
|
||
PKG_SOURCE_VERSION:=$(PKG_REV) | ||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) | ||
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz | ||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR) | ||
|
||
include $(INCLUDE_DIR)/package.mk | ||
|
||
MAKE_ARGS := CFLAGS="$(TARGET_CFLAGS)" CC=$(TARGET_CC) | ||
|
||
define Package/smartdns | ||
SECTION:=net | ||
CATEGORY:=Network | ||
TITLE:=smartdns server | ||
URL:=http://github.com/pymumu/smartdns/ | ||
MAINTAINER:=Nick Peng <pymumu@gmail.com> | ||
DEPENDS:=+libopenssl | ||
endef | ||
|
||
define Package/smartdns/description | ||
SmartDNS is a local DNS server. SmartDNS accepts DNS query requests from local clients, obtains DNS query results from multiple upstream DNS servers, and returns the fastest access results to clients. | ||
endef | ||
|
||
define Build/Configure | ||
mkdir -p $(PKG_INSTALL_DIR) | ||
endef | ||
|
||
define Build/Compile | ||
$(MAKE) -C $(PKG_BUILD_DIR)/src $(MAKE_ARGS) all | ||
endef | ||
|
||
define Package/smartdns/conffiles | ||
/etc/config/smartdns | ||
/etc/smartdns/address.conf | ||
/etc/smartdns/blacklist-ip.conf | ||
/etc/smartdns/custom.conf | ||
endef | ||
|
||
define Package/smartdns/install | ||
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/config $(1)/etc/init.d $(1)/etc/smartdns | ||
$(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/files/etc/config/smartdns $(1)/etc/config/smartdns | ||
endef | ||
|
||
$(eval $(call BuildPackage,smartdns)) |
2252757
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
编译是成功了,但是luci-app-smartdns没出现在webui里。
ps: 恢复出厂设置 后可以了