gentoo-ebuilds/dev-go/go-md2man/go-md2man-2.0.6.ebuild
Arthur Zamarin 15a198dc78
dev-go/go-md2man: Stabilize 2.0.6 amd64, #956570
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-05-24 22:06:05 +03:00

30 lines
678 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo go-module
DESCRIPTION="A utility to convert markdown to man pages"
HOMEPAGE="https://github.com/cpuguy83/go-md2man"
SRC_URI="https://github.com/cpuguy83/go-md2man/archive/v${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~arthurzam/distfiles/dev-go/${PN}/${P}-deps.tar.xz"
LICENSE="BSD-2 MIT"
SLOT="0"
KEYWORDS="amd64 ~arm arm64 ~loong ppc64 ~riscv ~x86"
src_compile() {
emake build
}
src_test() {
emake test
}
src_install() {
dobin bin/go-md2man
edo "${S}"/bin/go-md2man -in go-md2man.1.md -out go-md2man.1
doman go-md2man.1
}