mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-11 15:48:21 +02:00
Shamelessly stolen from app-crypt/jetring ebuilds. Closes: https://bugs.gentoo.org/826686 Signed-off-by: Marek Szuba <marecki@gentoo.org>
20 lines
444 B
Bash
20 lines
444 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="GnuPG archive keys of the Kali archive"
|
|
HOMEPAGE="https://www.kali.org"
|
|
SRC_URI="https://http.kali.org/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.xz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
|
|
BDEPEND="app-crypt/jetring"
|
|
|
|
src_compile() {
|
|
# Bug #826686
|
|
addpredict "/run/user/$(id -u)/gnupg/"
|
|
default
|
|
}
|