diff options
author | Stan Grishin <stangri@melmac.ca> | 2022-12-04 10:51:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-04 10:51:07 -0700 |
commit | 419c7364662f5361ed2eaab6d8a3e3a78c6402c5 (patch) | |
tree | 400f910925b320241e65fc41538155adf9abde18 /applications/luci-app-pbr/Makefile | |
parent | c87ff603e8cd6514e50299239e1ce50e4d1c038c (diff) | |
parent | 11073e5ee5141387b35cf7598007308cdc175185 (diff) |
Merge pull request #6126 from stangri/master-luci-app-pbr
luci-app-pbr: initial commit
Diffstat (limited to 'applications/luci-app-pbr/Makefile')
-rw-r--r-- | applications/luci-app-pbr/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/applications/luci-app-pbr/Makefile b/applications/luci-app-pbr/Makefile new file mode 100644 index 0000000000..d18bdf78aa --- /dev/null +++ b/applications/luci-app-pbr/Makefile @@ -0,0 +1,17 @@ +# Copyright 2017-2022 Stan Grishin (stangri@melmac.ca) +# This is free software, licensed under the GNU General Public License v3. + +include $(TOPDIR)/rules.mk + +PKG_LICENSE:=GPL-3.0-or-later +PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca> +PKG_VERSION:=1.0.0-1 + +LUCI_TITLE:=Policy Based Routing Service Web UI +LUCI_DESCRIPTION:=Provides Web UI for Policy Based Routing Service. +LUCI_DEPENDS:=+luci-base +jsonfilter +pbr +LUCI_PKGARCH:=all + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature |