blob: f9cbf4512b87e44b8038fb1558482374557947fc (
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
|
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
DEADBEEF_GUI="yes"
inherit cmake-utils deadbeef-plugins
DESCRIPTION="DeaDBeeF plugin for listening music from vkontakte.com"
HOMEPAGE="https://github.com/scorpp/db-vk"
SRC_URI="https://github.com/scorpp/db-vk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~*"
RDEPEND+=" dev-libs/json-glib:0
media-sound/deadbeef:0[curl]"
DEPEND="${RDEPEND}"
S="${WORKDIR}/db-vk-${PV}"
src_configure() {
local mycmakeargs="
$(cmake-utils_use_with gtk2 GTK2)
$(cmake-utils_use_with gtk3 GTK3)"
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
|