mirror of
https://github.com/openwrt/luci.git
synced 2025-09-12 05:29:48 +00:00
* update license ID and copyright in Makefile * add a short README with link to full documentation * switch doc link from melmac.net to melmac.ca * add donate text/URL * attempt to fix bootstrap DNS loading/saving from json * add DNS4EU provider (thanks @rikroe) * add OpenNameServer provider (thanks @Phoenix616) Signed-off-by: Stan Grishin <stangri@melmac.ca>
28 lines
710 B
Makefile
28 lines
710 B
Makefile
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Copyright 2017-2025 MOSSDeF, Stan Grishin (stangri@melmac.ca).
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-https-dns-proxy
|
|
PKG_LICENSE:=AGPL-3.0-or-later
|
|
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
|
|
PKG_VERSION:=2025.05.11
|
|
PKG_RELEASE:=4
|
|
|
|
LUCI_TITLE:=DNS Over HTTPS Proxy Web UI
|
|
LUCI_URL:=https://github.com/stangri/luci-app-https-dns-proxy/
|
|
LUCI_DESCRIPTION:=Provides Web UI for DNS Over HTTPS Proxy
|
|
LUCI_DEPENDS:=+luci-base +https-dns-proxy
|
|
|
|
define Package/$(PKG_NAME)/config
|
|
# shown in make menuconfig <Help>
|
|
help
|
|
$(LUCI_TITLE)
|
|
.
|
|
Version: $(PKG_VERSION)-$(PKG_RELEASE)
|
|
endef
|
|
|
|
include ../../luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|