blob: 7684a033537f979b04d73b1d92ba8cf60af54e91 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
REAL_PN=NickvisionTagger
REAL_P=${REAL_PN}-${PV}
inherit meson xdg
DESCRIPTION="An easy-to-use music tag (metadata) editor"
HOMEPAGE="https://github.com/nlogozzo/NickvisionTagger/"
SRC_URI="https://github.com/nlogozzo/${REAL_PN}/archive/${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}"/${REAL_P}
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="amd64 ~x86"
DEPEND="
dev-cpp/curlpp:=
dev-libs/jsoncpp:=
gui-libs/gtk:4
gui-libs/libadwaita:=
<media-libs/taglib-2
"
RDEPEND="
${DEPEND}
media-libs/chromaprint[tools]
"
PATCHES=(
"${FILESDIR}"/${P}-fix-narrowing.patch
"${FILESDIR}"/${P}-meson-install.patch
)
DOCS=( README.md )
|