blob: dd3d7d9e2f831b859281ca266c2d81ebd96f50e1 (
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
|
# Distributed under the terms of the GNU General Public License v2=
EAPI="5"
DEADBEEF_GUI="yes"
inherit deadbeef-plugins
GITHUB_COMMIT="c0788d47e5bcc2428c57fe4321566891c4abe452"
DESCRIPTION="DeaDBeeF replay gain control plugin"
HOMEPAGE="https://github.com/cboxdoerfer/ddb_replaygain_control"
SRC_URI="https://github.com/cboxdoerfer/ddb_replaygain_control/archive/${GITHUB_COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~*"
S="${WORKDIR}/ddb_replaygain_control-${GITHUB_COMMIT}"
src_prepare() {
epatch "${FILESDIR}/${PN}-cflags.patch"
}
src_compile() {
use gtk2 && emake gtk2
use gtk3 && emake gtk3
}
|