2013-09-29 20:38:12 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
PKG_NAME:=gluon-autoupdater
|
2014-07-05 00:48:56 +00:00
|
|
|
PKG_VERSION:=3
|
2014-05-14 18:46:31 +00:00
|
|
|
PKG_RELEASE:=$(GLUON_BRANCH)
|
2013-09-29 20:38:12 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
include $(GLUONDIR)/include/package.mk
|
2013-09-29 20:38:12 +00:00
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
define Package/gluon-autoupdater
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2014-07-09 18:10:21 +00:00
|
|
|
DEPENDS:=+gluon-core +gluon-cron +lua-platform-info +opkg +ecdsautils +!BUSYBOX_CONFIG_SHA512SUM:coreutils-sha512sum
|
2013-09-29 20:38:12 +00:00
|
|
|
TITLE:=Automatically update firmware
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
define Package/gluon-autoupdater/install
|
2013-09-29 20:38:12 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2014-02-06 18:57:39 +00:00
|
|
|
|
2014-05-14 18:46:31 +00:00
|
|
|
if [ '$(GLUON_BRANCH)' ]; then \
|
|
|
|
$(INSTALL_DIR) $(1)/lib/gluon/autoupdater; \
|
|
|
|
echo '$(GLUON_BRANCH)' > $(1)/lib/gluon/autoupdater/default_branch; \
|
|
|
|
fi
|
2013-09-29 20:38:12 +00:00
|
|
|
endef
|
|
|
|
|
2014-07-05 00:48:56 +00:00
|
|
|
define Package/gluon-autoupdater/postinst
|
|
|
|
#!/bin/sh
|
|
|
|
$(call GluonCheckSite,check_site.lua)
|
|
|
|
endef
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-autoupdater))
|