2016-04-30 18:39:23 +00:00
|
|
|
# Copyright (C) 2016 LEDE project
|
2016-04-26 23:50:04 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2018-05-20 17:32:29 +00:00
|
|
|
PKG_NAME:=openwrt-keyring
|
2016-12-21 21:25:41 +00:00
|
|
|
PKG_RELEASE:=1
|
2016-04-26 23:50:04 +00:00
|
|
|
|
|
|
|
PKG_SOURCE_PROTO:=git
|
2018-01-05 09:46:06 +00:00
|
|
|
PKG_SOURCE_URL=$(PROJECT_GIT)/keyring.git
|
2018-05-20 17:37:58 +00:00
|
|
|
PKG_SOURCE_DATE:=2018-05-18
|
|
|
|
PKG_SOURCE_VERSION:=103a32e9f52fd35a428dc08ddbca86fe41dfb918
|
|
|
|
PKG_MIRROR_HASH:=58f42796396fee0e4f008d6f5a970a421d023d6c98e71bf53c2778734fa3480b
|
2016-04-26 23:50:04 +00:00
|
|
|
|
2016-05-11 07:06:21 +00:00
|
|
|
PKG_MAINTAINER:=John Crispin <john@phrozen.org>
|
2016-04-26 23:50:04 +00:00
|
|
|
PKG_LICENSE:=GPL-2.0
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2018-05-20 17:32:29 +00:00
|
|
|
define Package/openwrt-keyring
|
2016-04-26 23:50:04 +00:00
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Base system
|
2018-05-20 17:32:29 +00:00
|
|
|
PROVIDES:=lede-keyring
|
|
|
|
TITLE:=OpenWrt Developer Keyring
|
|
|
|
URL:=https://openwrt.org/docs/guide-user/security/signatures
|
2016-04-26 23:50:04 +00:00
|
|
|
endef
|
|
|
|
|
2018-05-20 17:32:29 +00:00
|
|
|
define Package/openwrt-keyring/description
|
2016-04-26 23:50:04 +00:00
|
|
|
The keyring of with the developer using and gpg public keys.
|
|
|
|
endef
|
|
|
|
|
|
|
|
Build/Compile=
|
|
|
|
|
2018-05-20 17:32:29 +00:00
|
|
|
define Package/openwrt-keyring/install
|
2016-04-26 23:50:04 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/opkg/keys/
|
|
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/usign/* $(1)/etc/opkg/keys/
|
|
|
|
endef
|
|
|
|
|
2018-05-20 17:32:29 +00:00
|
|
|
$(eval $(call BuildPackage,openwrt-keyring))
|