1
0
Fork 0
flewkey-overlay/media-plugins/obs-wlrobs/obs-wlrobs-9999.ebuild

40 lines
820 B
Bash
Raw Permalink Normal View History

2023-01-03 20:19:21 +00:00
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2023-01-03 20:19:21 +00:00
EAPI=8
2020-02-26 06:53:27 +00:00
inherit meson
if [[ ${PV} == 9999 ]]; then
inherit mercurial
EHG_REPO_URI="https://hg.sr.ht/~scoopta/wlrobs"
else
MY_PN="wlrobs"
MY_P="${MY_PN}-v${PV}"
S="${WORKDIR}/${MY_P}"
SRC_URI="https://hg.sr.ht/~scoopta/wlrobs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
2020-02-26 06:53:27 +00:00
DESCRIPTION="Allows screen capture on wlroots-based Wayland compositors"
HOMEPAGE="https://hg.sr.ht/~scoopta/wlrobs"
LICENSE="GPL-3"
SLOT="0"
IUSE="+dmabuf +scpy"
2020-02-26 06:53:27 +00:00
2020-08-20 20:29:00 +00:00
DEPEND="
2020-02-26 06:53:27 +00:00
dev-libs/wayland
media-video/obs-studio
dmabuf? ( x11-libs/libdrm )
2020-02-26 06:53:27 +00:00
"
2020-08-20 20:29:00 +00:00
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
2020-02-26 06:53:27 +00:00
src_configure() {
local emesonargs=(
2020-02-26 06:53:27 +00:00
$(meson_use dmabuf use_dmabuf)
$(meson_use scpy use_scpy)
)
meson_src_configure
}