diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-06 20:03:46 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-06 20:03:46 +0100 |
commit | 26f2fd143a3015390f5b426319f8573a30548ae5 (patch) | |
tree | 306478d73e6c3070e1fafbfa028a787690a8bc8b /media-sound/bpmdetect | |
parent | dev-libs/udis86: Fix uninitialized var (diff) | |
download | gentoo-26f2fd143a3015390f5b426319f8573a30548ae5.tar.gz gentoo-26f2fd143a3015390f5b426319f8573a30548ae5.tar.bz2 gentoo-26f2fd143a3015390f5b426319f8573a30548ae5.zip |
media-sound/bpmdetect: Use cmake.eclass/EAPI-7, drop vcs-snapshot
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/bpmdetect')
-rw-r--r-- | media-sound/bpmdetect/bpmdetect-0.7.0_pre20170810.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/media-sound/bpmdetect/bpmdetect-0.7.0_pre20170810.ebuild b/media-sound/bpmdetect/bpmdetect-0.7.0_pre20170810.ebuild index 3f77ce8b3634..a94e3a52f961 100644 --- a/media-sound/bpmdetect/bpmdetect-0.7.0_pre20170810.ebuild +++ b/media-sound/bpmdetect/bpmdetect-0.7.0_pre20170810.ebuild @@ -1,14 +1,15 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 COMMIT=b13aac15904c1f821b1739d00445f49432705387 -inherit cmake-utils vcs-snapshot +inherit cmake DESCRIPTION="Automatic BPM detection utility" HOMEPAGE="https://github.com/Tatsh/bpmdetect" SRC_URI="https://github.com/Tatsh/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${COMMIT}" LICENSE="GPL-2" SLOT="0" @@ -26,7 +27,8 @@ RDEPEND=" media-libs/portaudio media-libs/taglib " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig " |