# ## Copyright (C) 2018 Karel Kočí # ## This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # # # include $(TOPDIR)/rules.mk PKG_NAME:=personal-pkgs-repo PKG_VERSION:=1.5.0 PKG_MAINTAINER:=Karel Kočí PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) include $(INCLUDE_DIR)/package.mk define Package/$(PKG_NAME) TITLE:=Package with repository key and meta dependencies endef define Package/$(PKG_NAME)/install $(INSTALL_DIR) $(1)/etc/updater/keys $(INSTALL_DATA) ./files/key.pub $(1)/etc/updater/keys/personal-pkgs.pub $(INSTALL_DIR) $(1)/etc/updater/conf.d $(INSTALL_CONF) ./files/updater.lua $(1)/etc/updater/conf.d/personal-pkgs.lua endef Build/Compile:=: $(eval $(call BuildPackage,$(PKG_NAME)))