mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net> Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
21 lines
470 B
Bash
21 lines
470 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
SEC_KEYS_VALIDPGPKEYS=(
|
|
'A602970FE1BF5C9C8A9491B97A3C9FE21DFDBF44:lehmi:ubuntu'
|
|
)
|
|
|
|
inherit sec-keys
|
|
|
|
DESCRIPTION="OpenPGP keys used by pdfbox.apache.org"
|
|
HOMEPAGE="https://pdfbox.apache.org/download.html"
|
|
|
|
KEYWORDS="amd64 arm64 ppc64"
|
|
|
|
src_install() {
|
|
sec-keys_src_install
|
|
mv "${ED}"/usr/share/openpgp-keys/{apache-pdfbox,pdfbox.apache.org}.asc || die
|
|
}
|