mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
https://github.com/sjuvonen/coquillo/pull/12.patch update EAPI 7 -> 8 Add media-libs/taglib:= slot op, ABI break imminent Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
39 lines
796 B
Bash
39 lines
796 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop qmake-utils
|
|
|
|
DESCRIPTION="GUI audio tagger based on Qt and taglib"
|
|
HOMEPAGE="https://www.linux-apps.com/content/show.php/Coquillo?content=141896"
|
|
SRC_URI="https://github.com/sjuvonen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtmultimedia:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtwidgets:5
|
|
media-libs/musicbrainz:5=
|
|
media-libs/taglib:=
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
PATCHES=( "${FILESDIR}"/${PN}-2.0.1-fix-build-taglib2.patch )
|
|
|
|
src_configure() {
|
|
eqmake5
|
|
}
|
|
|
|
src_install() {
|
|
dobin ${PN}
|
|
doicon extra/${PN}.png
|
|
domenu extra/${PN}.desktop
|
|
einstalldocs
|
|
}
|