odrling-overlay/app-crypt/sops/sops-3.8.1.ebuild

34 lines
611 B
Bash
Raw Normal View History

2024-03-21 20:36:55 +00:00
# Copyright 1999-2024 Gentoo Authors
2023-10-11 16:18:48 +00:00
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Simple and flexible tool for managing secrets"
2024-03-21 20:36:55 +00:00
HOMEPAGE="https://github.com/getsops/sops"
SRC_URI="
https://github.com/getsops/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://hikari.butaishoujo.moe/b/67314ee3/${P}-vendor.tar.xz
"
2023-10-11 16:18:48 +00:00
LICENSE="MPL-2.0"
2024-03-21 20:36:55 +00:00
2023-10-11 16:18:48 +00:00
SLOT="0"
2024-03-21 20:36:55 +00:00
KEYWORDS="~amd64 ~arm ~arm64"
RESTRICT="mirror"
2023-10-11 16:18:48 +00:00
DOCS=( {CHANGELOG,README}.rst )
src_compile() {
2024-03-21 20:36:55 +00:00
ego build
2023-10-11 16:18:48 +00:00
}
src_test() {
2024-03-21 20:36:55 +00:00
ego test || die "test failed"
2023-10-11 16:18:48 +00:00
}
src_install() {
einstalldocs
2024-03-21 20:36:55 +00:00
dobin sops
2023-10-11 16:18:48 +00:00
}