ce2c1c4d89178381389444daf83caf79ccdf06f6
[feed/routing.git] / packages / 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 endef
36
37 define Package/luci-app-bmx6/description
38 bmx6 web module for LuCi web interface
39 endef
40
41 define Package/luci-app-bmx6/conffiles
42 /etc/config/luci-bmx6
43 endef
44
45 define Build/Prepare
46 endef
47
48 define Build/Configure
49 endef
50
51 define Build/Compile
52 endef
53
54 define Package/luci-app-bmx6/install
55 $(CP) ./files/* $(1)/
56 chmod 755 $(1)/www/cgi-bin/bmx6-info
57 endef
58
59 $(eval $(call BuildPackage,luci-app-bmx6))
60