diff options
Diffstat (limited to 'vcpkg/ports/aubio/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/aubio/vcpkg.json | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vcpkg/ports/aubio/vcpkg.json b/vcpkg/ports/aubio/vcpkg.json new file mode 100644 index 0000000..0418877 --- /dev/null +++ b/vcpkg/ports/aubio/vcpkg.json @@ -0,0 +1,46 @@ +{ + "name": "aubio", + "version-date": "2024-01-03", + "description": "Aubio is a tool designed for the extraction of annotations from audio signals. Its features include segmenting a sound file before each of its attacks, performing pitch detection, tapping the beat and producing midi streams from live audio.", + "homepage": "https://github.com/aubio/aubio", + "license": "GPL-3.0-or-later", + "supports": "!xbox", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "default-features": [ + "tools" + ], + "features": { + "tools": { + "description": "Build tools and add extra dependencies", + "dependencies": [ + "bzip2", + { + "name": "ffmpeg", + "default-features": false, + "features": [ + "avcodec", + "avformat", + "swresample" + ] + }, + "libflac", + "liblzma", + "libogg", + { + "name": "libsndfile", + "default-features": false + }, + "libvorbis" + ] + } + } +} |