#    Copyright (C) 2011 Pau Escrich <pau@dabax.net>
#
#    This program is free software; you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation; either version 2 of the License, or
#    (at your option) any later version.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License along
#    with this program; if not, write to the Free Software Foundation, Inc.,
#    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
#    The full GNU General Public License is included in this distribution in
#    the file called "COPYING".

include $(TOPDIR)/rules.mk

PKG_NAME:=luci-app-bmx6
PKG_RELEASE:=6

PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
PKG_LICENSE:=GPL-2.0+

include $(INCLUDE_DIR)/package.mk

define Package/luci-app-bmx6
  SECTION:=luci
  CATEGORY:=LuCI
  SUBMENU:=3. Applications
  TITLE:= bmx6 configuration, status and visualization module
  DEPENDS:=+luci-lib-json +luci-base +luci-lib-httpclient +bmx6 +luci-lib-jquery-1-4 +luci-lib-dracula
  MAINTAINER:= Pau Escrich <p4u@dabax.net>
endef

define Package/luci-lib-jquery-1-4
  SECTION:=luci
  CATEGORY:=LuCI
  TITLE:=LuCI - Lua Configuration Interface
  MAINTAINER:=Gui Iribarren <gui@altermundi.net>
  SUBMENU:=6. Libraries
  TITLE:=jQuery 1.4 javascript library
endef

define Package/luci-lib-dracula
  SECTION:=luci
  CATEGORY:=LuCI
  TITLE:=LuCI - Lua Configuration Interface
  MAINTAINER:=Pau Escrich <p4u@dabax.net>
  SUBMENU:=6. Libraries
  TITLE:=dracula graph javascript library
endef

define Package/luci-app-bmx6/description
	bmx6 web application (status and configuration) for LuCi web interface
endef

define Package/luci-lib-jquery-1-4/description
	minified javascript jQuery 1.4 library
endef

define Package/luci-lib-dracula-graph/description
	minified dracula javascript graph library
endef

define Package/luci-app-bmx6/conffiles
	/etc/config/luci-bmx6
endef

define Build/Prepare
endef

define Build/Configure
endef

define Build/Compile
endef

define Package/luci-app-bmx6/install
	$(CP) ./bmx6/* $(1)/
	chmod 755 $(1)/www/cgi-bin/bmx6-info
endef

define Package/luci-lib-jquery-1-4/install
	$(INSTALL_DIR) $(1)/www/luci-static/resources/jquery/
	$(CP) ./jquery/* $(1)/www/luci-static/resources/jquery/
endef

define Package/luci-lib-dracula/install
	$(INSTALL_DIR) $(1)/www/luci-static/resources/dracula
	$(CP) ./dracula/* $(1)/www/luci-static/resources/dracula/
endef

$(eval $(call BuildPackage,luci-app-bmx6))
$(eval $(call BuildPackage,luci-lib-jquery-1-4))
$(eval $(call BuildPackage,luci-lib-dracula))
