mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-18 16:08:17 +00:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/37468/commits/d4d7e7473dcb0f6f324b658e59d3f16d767ccf94 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
19 lines
510 B
Bash
19 lines
510 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="OpenPGP keys used by poi.apache.org"
|
|
HOMEPAGE="https://poi.apache.org/download.html"
|
|
SRC_URI="https://downloads.apache.org/poi/KEYS -> ${P}-KEYS.asc"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="public-domain"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm arm64 ppc64 x86"
|
|
|
|
src_install() {
|
|
local files=( ${A} )
|
|
insinto /usr/share/openpgp-keys
|
|
newins - poi.apache.org.asc < <(cat "${files[@]/#/${DISTDIR}/}" || die)
|
|
}
|