# ## Copyright (C) 2019 CZ.NIC z.s.p.o. (http://www.nic.cz/) # ## This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # # # include $(TOPDIR)/rules.mk PKG_NAME:=localrepo PKG_SOURCE_URL:=https://gitlab.labs.nic.cz/turris/updater/localrepo.git PKG_SOURCE_BRANCH:=master PKG_MAINTAINER:=CZ.NIC include $(INCLUDE_DIR)/autopkg-branch.mk include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME) TITLE:=Next generation updater local repository manager DEPENDS:=+python3-light endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_BUILD_DIR)/localrepo $(1)/usr/bin/localrepo $(INSTALL_DIR) $(1)/etc/updater/conf.d $(INSTALL_CONF) $(PKG_BUILD_DIR)/localrepo.lua $(1)/etc/updater/conf.d/localrepo.lua endef # Repository should be consistent when updater is executed successfully but this # ensures that we will fix any problems that can be caused by older version of # localrepo define Package/$(PKG_NAME)/postinst [ -n "$$IPKG_INSTROOT" ] || { localrepo check --fix } endef Build/Compile:= $(eval $(call BuildPackage,$(PKG_NAME)))