Add SPDX license tags
[lede-routing/.git] / luci-app-bmx6 / Makefile
1 #    Copyright (C) 2011 Pau Escrich <pau@dabax.net>
2 #
3 #    This program is free software; you can redistribute it and/or modify
4 #    it under the terms of the GNU General Public License as published by
5 #    the Free Software Foundation; either version 2 of the License, or
6 #    (at your option) any later version.
7 #
8 #    This program is distributed in the hope that it will be useful,
9 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
10 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 #    GNU General Public License for more details.
12 #
13 #    You should have received a copy of the GNU General Public License along
14 #    with this program; if not, write to the Free Software Foundation, Inc.,
15 #    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 #
17 #    The full GNU General Public License is included in this distribution in
18 #    the file called "COPYING".
19
20 include $(TOPDIR)/rules.mk
21
22 PKG_NAME:=luci-app-bmx6
23 PKG_RELEASE:=3
24
25 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
26 PKG_LICENSE:=GPL-2.0+
27
28 include $(INCLUDE_DIR)/package.mk
29
30 define Package/luci-app-bmx6
31   SECTION:=luci
32   CATEGORY:=LuCI
33   SUBMENU:=3. Applications
34   TITLE:= bmx6 configuration, status and visualization module
35   DEPENDS:=+luci-lib-json +luci-mod-admin-full +luci-lib-httpclient +bmx6
36   MAINTAINER:= Pau Escrich <p4u@dabax.net>
37 endef
38
39 define Package/luci-app-bmx6/description
40         bmx6 web application (status and configuration) for LuCi web interface
41 endef
42
43 define Package/luci-app-bmx6/conffiles
44         /etc/config/luci-bmx6
45 endef
46
47 define Build/Prepare
48 endef
49
50 define Build/Configure
51 endef
52
53 define Build/Compile
54 endef
55
56 define Package/luci-app-bmx6/install
57         $(CP) ./files/* $(1)/
58         chmod 755 $(1)/www/cgi-bin/bmx6-info
59 endef
60
61 $(eval $(call BuildPackage,luci-app-bmx6))
62