blob: 84ef0c276feb0e545a91bb454455cea378c1096b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenPGP keys used to sign Stellarium releases"
HOMEPAGE="https://stellarium.org/ https://github.com/Stellarium/stellarium"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 ~riscv x86"
S="${WORKDIR}"
src_install() {
local files=( "${FILESDIR}"/stellarium.asc )
insinto /usr/share/openpgp-keys
newins - stellarium.asc < <(cat "${files[@]}" || die)
}
|