blob: 0f80d88dcb0c8cdc51282d9e3da1b04269c67e1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit meson
MY_PN=pipewire
MY_P=${MY_PN}-${PV}
SRC_URI="https://github.com/PipeWire/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
DESCRIPTION="Multimedia processing graphs"
HOMEPAGE="https://pipewire.org/"
LICENSE="LGPL-2.1+"
SLOT="0.2"
IUSE=""
RDEPEND="
sys-apps/dbus
"
DEPEND="${RDEPEND}"
S=${WORKDIR}/${MY_P}
DOCS=()
src_configure() {
local emesonargs=(
-Dgstreamer=disabled
-Dsystemd=false
)
meson_src_configure
}
src_install() {
meson_src_install
rm -r ${ED}/{etc,usr/bin}
}
|