60 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| include $(TOPDIR)/rules.mk
 | |
| 
 | |
| PKG_NAME:=gluon-core
 | |
| PKG_VERSION:=3
 | |
| PKG_RELEASE:=$(GLUON_VERSION)
 | |
| 
 | |
| PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
 | |
| 
 | |
| include $(GLUONDIR)/include/package.mk
 | |
| 
 | |
| define Package/gluon-core
 | |
|   SECTION:=gluon
 | |
|   CATEGORY:=Gluon
 | |
|   TITLE:=Base files of Gluon
 | |
|   DEPENDS:=+gluon-site +lua-platform-info +luci-lib-nixio +odhcp6c +firewall
 | |
| endef
 | |
| 
 | |
| 
 | |
| define LangConfig
 | |
| config GLUON_LANG_$(1)
 | |
| 	bool "$(GLUON_LANG_$(1)) language support"
 | |
| 	depends on PACKAGE_gluon-core
 | |
| 	default n
 | |
| 
 | |
| endef
 | |
| 
 | |
| 
 | |
| define Package/gluon-core/config
 | |
| $(foreach lang,$(GLUON_SUPPORTED_LANGS),$(call LangConfig,$(lang)))
 | |
| endef
 | |
| 
 | |
| 
 | |
| define Package/gluon-core/description
 | |
| 	Gluon community wifi mesh firmware framework: core
 | |
| endef
 | |
| 
 | |
| define Build/Prepare
 | |
| 	mkdir -p $(PKG_BUILD_DIR)
 | |
| endef
 | |
| 
 | |
| define Build/Configure
 | |
| endef
 | |
| 
 | |
| define Build/Compile
 | |
| endef
 | |
| 
 | |
| define Package/gluon-core/install
 | |
| 	$(CP) ./files/* $(1)/
 | |
| 
 | |
| 	$(INSTALL_DIR) $(1)/lib/gluon
 | |
| 	echo "$(GLUON_VERSION)" > $(1)/lib/gluon/gluon-version
 | |
| endef
 | |
| 
 | |
| define Package/gluon-core/postinst
 | |
| #!/bin/sh
 | |
| $(call GluonCheckSite,check_site.lua)
 | |
| endef
 | |
| 
 | |
| $(eval $(call BuildPackage,gluon-core))
 |