blob: 699f8e90c87347a4f186f87a878c3f3f7c76fc70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Copyright 2011 Calvin Walton <calvin.walton@kepstin.ca>
# Distributed under the terms of the GNU General Public License v2
require github [ user=acoustid tag=v${PV} ]
require cmake
SUMMARY="A library that implements an algorithm for extracting fingerprints from any audio source"
HOMEPAGE="https://acoustid.org/${PN}"
BUGS_TO="calvin.walton@kepstin.ca"
LICENCES="LGPL-2.1 MIT"
SLOT="0"
PLATFORMS="~amd64"
MYOPTIONS=""
DEPENDENCIES="
build+run:
media/ffmpeg
"
CMAKE_SRC_CONFIGURE_PARAMS=(
-DBUILD_SHARED_LIBS:BOOL=TRUE
-DBUILD_TESTS:BOOL=FALSE
-DBUILD_TOOLS:BOOL=TRUE
-DFFT_LIB:STRING=avfft
)
|