blob: 67885043f0ff6b68afe637705bbcfe2d666a782d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="OpenPGP key used for my personal repository"
HOMEPAGE="https://cynerd.cz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
S=${WORKDIR}
src_install() {
insinto /usr/share/openpgp-keys
newins "${FILESDIR}/cynerd.key.pub" cynerd.asc
}
|