mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
See-Also: https://github.com/plp13/qman/issues/14 Signed-off-by: Mazunki Hoksaas <rolferen@gmail.com>
35 lines
601 B
Bash
35 lines
601 B
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit meson git-r3
|
|
|
|
DESCRIPTION="A more modern manual page viewer for our terminals"
|
|
HOMEPAGE="https://github.com/plp13/qman"
|
|
EGIT_REPO_URI="https://github.com/plp13/qman.git"
|
|
EGIT_BRANCH="devel"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS=""
|
|
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
|
|
}
|