blob: 3004caed148b1c73764ab563ab2c4e64a2cc4997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit autotools deadbeef-plugins
DESCRIPTION="DeaDBeeF MPRIS plugin"
HOMEPAGE="https://github.com/Serranya/deadbeef-mpris2-plugin"
SRC_URI="https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v${PV}/deadbeef-mpris2-plugin-${PV}.tar.xz -> ${P}.tar.xz"
LICENSE="GPL-3"
KEYWORDS="~*"
IUSE=""
S="${WORKDIR}/${P/-mpris/}"
src_prepare() {
eautoreconf
}
src_configure() {
econf --disable-static
}
|