mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-08 14:43:27 -04:00
27 lines
582 B
Bash
27 lines
582 B
Bash
# Copyright 2023-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_P="${P}-1"
|
|
|
|
DESCRIPTION="Collection of GPG keys used in Linux Distributions"
|
|
HOMEPAGE="https://github.com/rpm-software-management/distribution-gpg-keys"
|
|
SRC_URI="https://github.com/rpm-software-management/distribution-gpg-keys/archive/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${PN}-${MY_P}"
|
|
|
|
LICENSE="CC0-1.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="copr"
|
|
|
|
src_prepare() {
|
|
default
|
|
use copr || rm -r keys/copr || die
|
|
}
|
|
|
|
src_install() {
|
|
insinto "/usr/share/${PN}"
|
|
doins -r keys/*
|
|
}
|