From a4dbd76399448e4c060d30202b9d61640c57bed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Buchm=C3=BCller?= Date: Tue, 14 Apr 2020 12:00:07 +0200 Subject: [PATCH] bat: fix build The manual page is not in doc/man.1 but somewhere in the build tree. --- srcpkgs/bat/template | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/srcpkgs/bat/template b/srcpkgs/bat/template index dc2e44304ee..878b748adf0 100644 --- a/srcpkgs/bat/template +++ b/srcpkgs/bat/template @@ -18,7 +18,10 @@ pre_build() { } post_install() { + local manpage vlicense LICENSE-MIT vdoc README.md - vman doc/bat.1 + # The manual page is hidden somewhere deep in the build tree + manpage=$(find ${wrksrc}/target -name bat.1) + vman ${manpage} }