diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2022-06-20 06:17:44 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2022-06-20 06:17:44 +0200 |
commit | 5ea7340fda42bc0d92fc2344731353a6743b3f5b (patch) | |
tree | 10fb2961d8fe8605eec4752c5f9521027603c948 /media-libs/libkeyfinder/libkeyfinder-2.2.7.ebuild | |
parent | profiles: drop obsolete kernel masks (diff) | |
download | gentoo-5ea7340fda42bc0d92fc2344731353a6743b3f5b.tar.gz gentoo-5ea7340fda42bc0d92fc2344731353a6743b3f5b.tar.bz2 gentoo-5ea7340fda42bc0d92fc2344731353a6743b3f5b.zip |
media-libs/libkeyfinder: bump to 2.2.7
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/libkeyfinder/libkeyfinder-2.2.7.ebuild')
-rw-r--r-- | media-libs/libkeyfinder/libkeyfinder-2.2.7.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-libs/libkeyfinder/libkeyfinder-2.2.7.ebuild b/media-libs/libkeyfinder/libkeyfinder-2.2.7.ebuild new file mode 100644 index 000000000000..a1080a7f5d67 --- /dev/null +++ b/media-libs/libkeyfinder/libkeyfinder-2.2.7.ebuild @@ -0,0 +1,34 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Musical key detection library for digital audio" +HOMEPAGE="https://github.com/mixxxdj/libkeyfinder" +SRC_URI="https://github.com/mixxxdj/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +RDEPEND=" + sci-libs/fftw:3.0 +" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -i -e "s/NAMES fftw /NAMES /" \ + cmake/FindFFTW3.cmake || die + cmake_src_prepare +} + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTING=OFF + ) + + cmake_src_configure +} |