mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-08 00:05:33 +03:00
Done via: ``` git grep -l 'virtual/zlib\[' | xargs sed -i -e 's@virtual/zlib\[@virtual/zlib:=\[@g' ``` Signed-off-by: Michał Górny <mgorny@gentoo.org>
25 lines
717 B
Bash
25 lines
717 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake-multilib
|
|
|
|
DESCRIPTION="The MAD id3tag library, Tenacity fork"
|
|
HOMEPAGE="https://codeberg.org/tenacityteam/libid3tag"
|
|
SRC_URI="https://codeberg.org/tenacityteam/libid3tag/archive/${PV}.tar.gz -> ${P}.codeberg.tar.gz"
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/${PV}" # SOVERSION = ${CMAKE_PROJECT_VERSION} in CMakeLists.txt
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
|
|
RDEPEND="virtual/zlib:=[${MULTILIB_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
# patches from upstream
|
|
"${FILESDIR}"/${P}-cmake4.patch
|
|
"${FILESDIR}"/${P}-fix_c23.patch
|
|
)
|