mirror of
https://github.com/openwrt/luci.git
synced 2026-05-31 10:31:55 +08:00
9c836d1473
* bugfix: update OpenDNS family filter URL * update copyright/license * update PKG_RELEASE to avoid double `r` on snapshots * add LUCI_URL to upstream repository * update README URL to upstream documentation * update pkg.URL property to allow linking to a specific version of README * remove duplicates of pkg object from overview.js/status include js files Signed-off-by: Stan Grishin <stangri@melmac.ca>
28 lines
724 B
Makefile
28 lines
724 B
Makefile
# Copyright 2017-2024 MOSSDeF, Stan Grishin (stangri@melmac.ca).
|
|
# This is free software, licensed under AGPL-3.0-or-later.
|
|
|
|
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:=2023.11.19
|
|
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
|