gentoo-ebuilds/app-crypt/jetring/jetring-0.32.ebuild
Sebastian Pipping 69ce045f27
app-crypt/jetring: 0.32
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
2024-12-14 20:12:00 +01:00

36 lines
621 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="GPG keyring maintenance using changesets"
HOMEPAGE="http://joeyh.name/code/jetring/"
SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
DEPEND="app-crypt/gnupg"
RDEPEND="
${DEPEND}
dev-lang/perl
"
PATCHES=(
"${FILESDIR}"/${PN}-0.21-parallel.patch
)
src_compile() {
addpredict "/run/user/$(id -u)/gnupg/"
default
}
src_install() {
default
insinto /usr/share/${PN}/
doins -r example
doman ${PN}*.[0-9]
}