Files
guru/app-misc/qman/qman-1.2.1-r1.ebuild
Mazunki Hoksaas 8fa0dd4b3f app-misc/qman: fix ebuild bugs
Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
2025-02-05 20:26:02 +01:00

34 lines
617 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="A more modern manual page viewer for our terminals"
HOMEPAGE="https://github.com/plp13/qman"
SRC_URI="https://github.com/plp13/qman/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+doc"
DEPEND="
sys-libs/ncurses:=
dev-libs/inih
sys-libs/zlib
"
BDEPEND="
dev-python/cogapp
"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
$(meson_feature doc docs)
-Ddocdir="/usr/share/doc/${PF}"
)
meson_src_configure
}