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