add media-plugins/deadbeef-pipewire package

master
Alexander Miroshnichenko 2023-04-20 12:25:57 +03:00
parent 92ff12cd9f
commit eeefc0c7db
Signed by: alex
GPG Key ID: E93720C6C73A77F4
2 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1 @@
EBUILD deadbeef-pipewire-9999.ebuild 834 BLAKE2B 9a49317f47aacc2b9c12803a0b9750d70fcd7fd210a8096cd6d3ad2088e4fdac4287e3a5e9eb1d7f9aae3f59a92ff9f0a3619bd6c1b9b2c67459713eec3d1be7 SHA512 473fc4fa582db4778ff7a68b8d8faee20b67e1d6c70b765c0a5d4a3ce4ca039d1ca7916da5e8895b335173ae5fdffee236c32572d5bd948c3fb2884f44915cf3

View File

@ -0,0 +1,36 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="PipeWire output plugin for DeaDBeeF Music Player"
HOMEPAGE="https://github.com/saivert/ddb_output_pw"
MY_PN="ddb_output_pw"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/saivert/${MY_PN}.git"
inherit autotools git-r3
else
KEYWORDS="~amd64"
SRC_URI="https://github.com/saivert/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
fi
LICENSE="GPL-2.0"
SLOT="0"
IUSE=""
DEPEND_COMMON="
media-video/pipewire
media-sound/deadbeef"
RDEPEND="${DEPEND_COMMON}"
DEPEND="${DEPEND_COMMON}"
src_configure() {
sed -i "s@lib/deadbeef@$(get_libdir)/deadbeef@" meson.build
meson_src_configure
}