You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-sound/playerctl/playerctl-2.0.2.ebuild

43 lines
893 B

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit meson xdg-utils
DESCRIPTION="A CLI utility to control media players over MPRIS"
HOMEPAGE="https://github.com/acrisci/playerctl"
SRC_URI="https://github.com/acrisci/playerctl/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 ~arm64 x86"
IUSE="doc introspection"
RDEPEND="
dev-libs/glib:2
introspection? ( dev-libs/gobject-introspection:= )
"
DEPEND="${RDEPEND}
dev-util/gdbus-codegen
dev-util/glib-utils
doc? ( dev-util/gtk-doc )
virtual/pkgconfig
"
src_configure() {
local emesonargs=(
$(meson_use doc gtk-doc)
$(meson_use introspection)
)
xdg_environment_reset # 596166
meson_src_configure
}
src_install() {
meson_src_install
docinto examples
dodoc -r "${S}"/examples/.
docompress -x "/usr/share/doc/${PF}/examples"
}