mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-02 12:39:02 +08:00
1d5b2d15ff
* add port for `rubberband` [rubberband](https://www.breakfastquay.com/rubberband/) is a small library for stretching sounds. This is the minimal portfile to make vcpkg happy, but probably still needs some improvement, i.e. not picking up system libraries. * [rubberband] Update to 2.0.2 * [rubberband] remove lv2 feature, because the install location is out of the vcpkg install tree * [rubberband] Remove vcpkg_cmake_get_vars dependency * [rubberband] Disable static builds on windows because of broken libsndfile dependency Co-authored-by: Daniel Reuter <daniel.robin.reuter@googlemail.com>
31 lines
687 B
JSON
31 lines
687 B
JSON
{
|
|
"name": "rubberband",
|
|
"version": "2.0.2",
|
|
"description": "A high quality software library for audio time-stretching and pitch-shifting.",
|
|
"homepage": "https://www.breakfastquay.com/rubberband/",
|
|
"license": "GPL-2.0-or-later",
|
|
"supports": "!uwp & !(windows & static)",
|
|
"dependencies": [
|
|
"fftw3",
|
|
"libsamplerate",
|
|
{
|
|
"name": "vcpkg-tool-meson",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"cli": {
|
|
"description": "Build the command-line utility",
|
|
"dependencies": [
|
|
{
|
|
"name": "libsndfile",
|
|
"default-features": false,
|
|
"features": [
|
|
"external-libs"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|