mirror of
https://github.com/openwrt/luci.git
synced 2025-10-11 17:45:27 +00:00
28 lines
698 B
Makefile
28 lines
698 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-pbr
|
|
PKG_LICENSE:=AGPL-3.0-or-later
|
|
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
|
|
PKG_VERSION:=1.2.0
|
|
PKG_RELEASE:=2
|
|
|
|
LUCI_TITLE:=Policy Based Routing Service Web UI
|
|
LUCI_URL:=https://github.com/stangri/luci-app-pbr/
|
|
LUCI_DESCRIPTION:=Provides Web UI for Policy Based Routing Service.
|
|
LUCI_DEPENDS:=+luci-base +jsonfilter +pbr
|
|
|
|
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
|