From 1d5b22ec60e28c5d5cc23c1917b0263a24b1e9b2 Mon Sep 17 00:00:00 2001 From: Simon van der Maas Date: Tue, 16 Feb 2021 21:59:44 +0100 Subject: [PATCH] app-misc/lf: fixed ebuild Package-Manager: Portage-3.0.13, Repoman-3.0.2 Signed-off-by: Simon van der Maas --- app-misc/lf/lf-20.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app-misc/lf/lf-20.ebuild b/app-misc/lf/lf-20.ebuild index e75901ce59..36aa78f36b 100644 --- a/app-misc/lf/lf-20.ebuild +++ b/app-misc/lf/lf-20.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit go-module golang-build +inherit go-module EGO_SUM=( "github.com/gdamore/encoding v1.0.0" @@ -40,9 +40,11 @@ S="${WORKDIR}/lf-r${PV}" EGO_PN=github.com/gokcehan/lf src_compile() { - go build + go build -x || die } src_install() { dobin "lf" + einstalldocs + doman "lf.1" }