Merge branch 'bmx6'
[feed/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:=2
24
25 PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
26
27 include $(INCLUDE_DIR)/package.mk
28
29 define Package/luci-app-bmx6
30 SECTION:=luci
31 CATEGORY:=LuCI
32 SUBMENU:=3. Applications
33 TITLE:= bmx6 configuration, status and visualization module
34 DEPENDS:=+luci-lib-json +luci-mod-admin-core +luci-lib-httpclient +bmx6
35 MAINTAINER:= Pau Escrich <p4u@dabax.net>
36 endef
37
38 define Package/luci-app-bmx6/description
39 bmx6 web module for LuCi web interface
40 endef
41
42 define Package/luci-app-bmx6/conffiles
43 /etc/config/luci-bmx6
44 endef
45
46 define Build/Prepare
47 endef
48
49 define Build/Configure
50 endef
51
52 define Build/Compile
53 endef
54
55 define Package/luci-app-bmx6/install
56 $(CP) ./files/* $(1)/
57 chmod 755 $(1)/www/cgi-bin/bmx6-info
58 endef
59
60 $(eval $(call BuildPackage,luci-app-bmx6))
61