OpenWrt – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 1 | # Copyright (C) 2016 LEDE project |
2 | |||
3 | include $(TOPDIR)/rules.mk |
||
4 | |||
5 | PKG_NAME:=openwrt-keyring |
||
6 | PKG_RELEASE:=1 |
||
7 | |||
8 | PKG_SOURCE_PROTO:=git |
||
9 | PKG_SOURCE_URL=$(PROJECT_GIT)/keyring.git |
||
10 | PKG_SOURCE_DATE:=2018-05-18 |
||
11 | PKG_SOURCE_VERSION:=103a32e9f52fd35a428dc08ddbca86fe41dfb918 |
||
12 | PKG_MIRROR_HASH:=58f42796396fee0e4f008d6f5a970a421d023d6c98e71bf53c2778734fa3480b |
||
13 | |||
14 | PKG_MAINTAINER:=John Crispin <john@phrozen.org> |
||
15 | PKG_LICENSE:=GPL-2.0 |
||
16 | |||
17 | include $(INCLUDE_DIR)/package.mk |
||
18 | |||
19 | define Package/openwrt-keyring |
||
20 | SECTION:=base |
||
21 | CATEGORY:=Base system |
||
22 | PROVIDES:=lede-keyring |
||
23 | TITLE:=OpenWrt Developer Keyring |
||
24 | URL:=https://openwrt.org/docs/guide-user/security/signatures |
||
25 | endef |
||
26 | |||
27 | define Package/openwrt-keyring/description |
||
28 | The keyring of with the developer using and gpg public keys. |
||
29 | endef |
||
30 | |||
31 | Build/Compile= |
||
32 | |||
33 | define Package/openwrt-keyring/install |
||
34 | $(INSTALL_DIR) $(1)/etc/opkg/keys/ |
||
35 | $(INSTALL_DATA) $(PKG_BUILD_DIR)/usign/* $(1)/etc/opkg/keys/ |
||
36 | endef |
||
37 | |||
38 | $(eval $(call BuildPackage,openwrt-keyring)) |