blob: f7597310aecd643b89ff84643fd0aaba34b94ba0 (
plain) (
tree)
|
|
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P=${P#signify-keys-}
DESCRIPTION="Signify keys used to sign oriole.systems releases"
HOMEPAGE="https://oriole.systems"
SRC_URI="https://oriole.systems/release.pub -> ${MY_P}.pub"
S=${WORKDIR}
LICENSE="public-domain"
SLOT="${PV}"
KEYWORDS="amd64 x86"
src_install() {
insinto /usr/share/signify-keys
doins "${DISTDIR}/${MY_P}.pub"
}
|