blob: 691522485c5bb5f367c2fc2cc8ec8904c8f33340 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo go-module
COMMIT=17f38511d61846e2fb8ec01a1532f3ef5525e71d
DESCRIPTION="Manipulation tool for OCI images"
HOMEPAGE="https://github.com/opencontainers/umoci"
SRC_URI="https://github.com/opencontainers/umoci/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="test"
BDEPEND="dev-go/go-md2man"
src_compile() {
ego build -buildmode=pie -mod=vendor \
-ldflags "-w -X main.gitCommit=${COMMIT} -X main.version=${PV}" \
-o "bin/${PN}" ./cmd/${PN}
cd doc/man || die
for f in *.1.md; do
edo go-md2man -in ${f} -out ${f%%.md}
done
}
src_install() {
dobin bin/${PN}
doman doc/man/*.1
local DOCS=( CHANGELOG.md README.md )
einstalldocs
}
|