You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
713 B
32 lines
713 B
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit flag-o-matic toolchain-funcs multilib
|
|
|
|
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"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ppc64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND=">=media-libs/aubio-0.4.1
|
|
media-libs/vamp-plugin-sdk
|
|
=sci-libs/fftw-3*"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
tc-export CXX
|
|
emake CFLAGS="${CFLAGS} -fPIC" -f Makefile.linux
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/$(get_libdir)/vamp
|
|
doins vamp-aubio.so vamp-aubio.cat
|
|
dodoc README.md
|
|
}
|