blob: 1225cf0d3b1f8bba32ccd26609ec01f57dc27342 (
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
43
44
45
46
47
48
49
50
51
52
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cargo git-r3
DESCRIPTION="spotify_player is a fast, easy to use, and configurable terminal music player."
HOMEPAGE="https://github.com/aome510/spotify-player"
EGIT_REPO_URI="https://github.com/aome510/spotify-player.git"
LICENSE="0BSD Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD BSD-2 Boost-1.0 ISC LGPL-3 LGPL-3+ MIT MPL-2.0 Unicode-DFS-2016 Unlicense ZLIB"
SLOT="0"
IUSE="daemon image +libnotify +media-control pulseaudio sixel +streaming"
REQUIRED_USE="
sixel? ( image )
daemon? ( streaming )
"
DEPEND="
dev-libs/openssl
sys-apps/dbus
libnotify? ( x11-libs/libnotify )
pulseaudio? ( media-libs/libpulse )
sixel? ( media-libs/libsixel )
streaming? ( media-libs/alsa-lib )
"
RDEPEND="${DEPEND}"
src_unpack() {
git-r3_src_unpack
cargo_live_src_unpack
}
src_configure() {
initfeatures=(
"$(usex daemon daemon '')"
"$(usex image image '')"
"$(usex libnotify notify '')"
"$(usex media-control media-control '')"
"$(usex pulseaudio pulseaudio-backend alsa-backend)"
"$(usex sixel sixel '')"
"$(usex streaming streaming '')"
)
newfeatures=$(IFS=, ; echo "${initfeatures[*]}") || die
cargo_src_configure --features ${newfeatures} --no-default-features
}
src_install() {
cargo_src_install --path ./spotify_player
}
QA_FLAGS_IGNORED="usr/bin/spotify_player"
|