mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Closes: https://bugs.gentoo.org/952537 Closes: https://bugs.gentoo.org/951044 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
34 lines
823 B
Bash
34 lines
823 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
|
PYTHON_REQ_USE='threads(+)'
|
|
|
|
inherit python-any-r1 waf-utils
|
|
|
|
WAF_PV='2.0.20'
|
|
|
|
DESCRIPTION="Onset detection, pitch tracking, note tracking and tempo tracking plugins"
|
|
HOMEPAGE="https://www.vamp-plugins.org/"
|
|
SRC_URI="https://aubio.org/pub/vamp-aubio-plugins/${P}.tar.bz2
|
|
https://waf.io/waf-${WAF_PV}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
# bug #748057, configure script only allows amd64/x86
|
|
KEYWORDS="-* amd64 -x86"
|
|
IUSE=""
|
|
|
|
DEPEND="media-libs/aubio
|
|
media-libs/vamp-plugin-sdk
|
|
=sci-libs/fftw-3*"
|
|
RDEPEND="${DEPEND}"
|
|
DEPEND="${DEPEND}
|
|
${PYTHON_DEPS}"
|
|
|
|
src_prepare() {
|
|
rm -r "${S}"/waflib && cp "${DISTDIR}/waf-${WAF_PV}" "${S}"/waf || die 'Failed to update waf'
|
|
default
|
|
}
|