This repository has been archived on 2024-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
gluon-firmware/package/gluon-legacy/Makefile

41 lines
703 B
Makefile
Raw Permalink Normal View History

include $(TOPDIR)/rules.mk
PKG_NAME:=gluon-legacy
2014-07-05 00:48:56 +00:00
PKG_VERSION:=2
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
2014-07-05 00:48:56 +00:00
include $(GLUONDIR)/include/package.mk
define Package/gluon-legacy
SECTION:=gluon
CATEGORY:=Gluon
TITLE:=Legacy update scripts
2014-05-11 08:03:25 +00:00
DEPENDS:=+gluon-core
endef
define Package/gluon-legacy/description
Gluon community wifi mesh firmware framework: legacy update scripts
endef
define Build/Prepare
mkdir -p $(PKG_BUILD_DIR)
endef
define Build/Configure
endef
define Build/Compile
endef
define Package/gluon-legacy/install
$(CP) ./files/* $(1)/
endef
2014-07-05 00:48:56 +00:00
define Package/gluon-legacy/postinst
#!/bin/sh
$(call GluonCheckSite,check_site.lua)
endef
$(eval $(call BuildPackage,gluon-legacy))