62 lines
1.6 KiB
Makefile
Executable File
62 lines
1.6 KiB
Makefile
Executable File
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=openwrt-dnsforwarder
|
|
PKG_VERSION:=6
|
|
PKG_RELEASE:=3
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/holmium/dnsforwarder.git
|
|
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
|
PKG_SOURCE_VERSION:=587e61ae4d75dc976f538088b715a3c8ee26c144
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-6
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/$(PKG_NAME)
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=A simple DNS forwarder
|
|
URL:=https://github.com/holmium/dnsforwarder
|
|
DEPENDS:=+wget +ipset +dnsmasq-full +libpthread +coreutils-base64
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/description
|
|
Forwarding queries to customized domains (and their subdomains) to specified servers over a specified protocol (UDP or TCP). non-standard ports are supported.
|
|
endef
|
|
|
|
|
|
define Package/$(PKG_NAME)/postinst
|
|
#!/bin/sh
|
|
rm -rf /tmp/luci*
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/dnsforwarder/dnsforwarder.conf
|
|
/etc/dnsforwarder/china-banned
|
|
/etc/dnsforwarder/base-gfwlist.txt
|
|
/etc/dnsforwarder/userlist
|
|
endef
|
|
|
|
define Build/Prepare
|
|
$(Build/Prepare/Default)
|
|
$(foreach po,$(wildcard ${CURDIR}/i18n/zh-cn/*.po), \
|
|
po2lmo $(po) $(PKG_BUILD_DIR)/$(patsubst %.po,%.lmo,$(notdir $(po)));)
|
|
endef
|
|
|
|
|
|
CONFIGURE_ARGS += --enable-downloader=wget
|
|
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/dnsforwarder $(1)/usr/bin/dnsforwarder
|
|
$(INSTALL_DIR) $(1)/usr/lib/lua/luci/i18n
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/*.*.lmo $(1)/usr/lib/lua/luci/i18n/
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|