2013-01-30 20:20:58 +00:00
|
|
|
# Copyright (C) 2012 Nils Schneider <nils at nilsschneider.net>
|
|
|
|
# This is free software, licensed under the Apache 2.0 license.
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
PKG_NAME:=gluon-config-mode-core
|
|
|
|
PKG_VERSION:=2
|
2013-01-30 20:20:58 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
include $(GLUONDIR)/include/package.mk
|
2013-01-30 20:20:58 +00:00
|
|
|
|
2015-03-18 19:25:12 +00:00
|
|
|
PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
|
|
|
|
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
define Package/gluon-config-mode-core
|
2013-01-30 20:20:58 +00:00
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2014-07-05 18:11:41 +00:00
|
|
|
TITLE:=Luci based config mode for user friendly setup of new mesh nodes
|
2015-03-18 19:25:12 +00:00
|
|
|
DEPENDS:=+gluon-setup-mode +gluon-luci-theme +gluon-lock-password $(GLUON_I18N_PACKAGES)
|
2013-01-30 20:20:58 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
define Package/gluon-config-mode-core/install
|
2013-01-30 20:20:58 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
|
|
|
endef
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
define Package/gluon-config-mode-core/postinst
|
2014-07-05 00:48:56 +00:00
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-config-mode-core))
|