2014-07-27 17:31:45 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-config-mode-geo-location
|
|
|
|
PKG_VERSION:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2016-10-08 22:18:45 +00:00
|
|
|
include ../gluon.mk
|
2014-07-27 17:31:45 +00:00
|
|
|
|
2015-03-19 00:08:38 +00:00
|
|
|
PKG_CONFIG_DEPENDS += $(GLUON_I18N_CONFIG)
|
|
|
|
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
define Package/gluon-config-mode-geo-location
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Set geographic location of a node
|
2017-07-08 14:34:40 +00:00
|
|
|
DEPENDS:=+gluon-config-mode-core +gluon-node-info
|
2014-07-27 17:31:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2015-03-19 18:05:42 +00:00
|
|
|
$(call GluonBuildI18N,gluon-config-mode-geo-location,i18n)
|
2016-07-10 18:08:44 +00:00
|
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
2014-07-27 17:31:45 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-config-mode-geo-location/install
|
2016-07-10 18:08:44 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
2015-03-19 00:08:38 +00:00
|
|
|
$(call GluonInstallI18N,gluon-config-mode-geo-location,$(1))
|
2014-07-27 17:31:45 +00:00
|
|
|
endef
|
|
|
|
|
2016-04-27 10:37:30 +00:00
|
|
|
define Package/gluon-config-mode-geo-location/postinst
|
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2014-07-27 17:31:45 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-config-mode-geo-location))
|