include $(TOPDIR)/rules.mk PKG_NAME:=cronosagent PKG_VERSION:=master PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git@code.brandmeister.network:r3abm/CronosAgent.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) PKG_SOURCE_VERSION:=HEAD PKG_SOURCE:=$(PKG_NAME).tar.gz PKG_BUILD_DEPENDS:=+libstdcpp +libopenssl include $(INCLUDE_DIR)/package.mk define Package/cronosagent SECTION:=net CATEGORY:=Network TITLE:=CronosAgent URL:=https://brandmeister.network/ DEPENDS:=+libstdcpp +libopenssl endef define Package/cronosagent/description CronosAgent for BrandMeister DMR Master Server Allows to connect Radio Activity KAIROS Repetaters to BrandMeister DMR Master Server Radio Activity KAIROS should have built-in feature of External Server Access which is available on firmware customization 008 (Radio Amateur community) endef #define Build/cronosagent/Compile #$(call Build/Compile/Default, -C $(PKG_BUILD_DIR) ) #endef define Package/cronosagent/conffiles /etc/config/cronosagent endef define Package/cronosagent/postinst #!/bin/sh /etc/init.d/cronosagent enable endef define Package/cronosagent/prerm #!/bin/sh /etc/init.d/cronosagent disable endef define Package/cronosagent/install $(INSTALL_DIR) $(1)/opt/CronosAgent $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_DIR) $(1)/etc/config $(INSTALL_DIR) $(1)/usr/lib/lua/luci/controller $(INSTALL_DIR) $(1)/usr/lib/lua/luci/model/cbi/cronosagent $(INSTALL_BIN) $(BUILD_DIR)/cronosagent.sh $(1)/opt/CronosAgent/ $(INSTALL_BIN) $(PKG_BUILD_DIR)/cronosagent $(1)/opt/CronosAgent/ $(INSTALL_BIN) $(BUILD_DIR)/OpenWRT/init.d/cronosagent $(1)/etc/init.d/ $(INSTALL_DATA) $(BUILD_DIR)/OpenWRT/config/cronosagent $(1)/etc/config/ $(INSTALL_DATA) $(BUILD_DIR)/OpenWRT/controller/cronosagent.lua $(1)/usr/lib/lua/luci/controller/ $(INSTALL_DATA) $(BUILD_DIR)/OpenWRT/model/cbi/cronosagent/configure.lua $(1)/usr/lib/lua/luci/model/cbi/cronosagent/ endef $(eval $(call BuildPackage,cronosagent))