vcpkg/ports/fluidsynth/vcpkg.json
Pierre Wendling ce8d96a7c3
[fluidsynth] Update patch and portfile (#29636)
* [fluidsynth] Update gentables patch.

Installation of FluidSynthTargets.cmake was accidentally turned off with
the previous version of the patch.

* [fluidsynth] Update portfile.

- Remove manpages.
- vcpkg_copy_tools already cleans up the bin directories
- Copy pdbs after moving the tools.
- Remove `enable-debug` as it no longer exists.

* [fluidsynth] Install usage.

* [fluidsynth] Bump port version.

* [fluidsynth] Update baseline.

* [fluidsynth] Find dependencies in the config file.

The library dependencies of `FluidSynth::libfluidsynth-OBJ` were not
searched for in the Config file.

* [fluidsynth] Update version.

* [fluidsynth] Apply suggestion from review.

Do not set `VCPKG_BUILD_MAKE_TABLES` in the patch.

* [fluidsynth] Update version.

* [fluidsynth] Update patch.

- Avoid using REQUIRED to find packages.
- Check for ALSA on Linux.
- Provide versions for pkg-config modules.

* [fluidsynth] Update version.
2023-02-14 09:40:36 -08:00

49 lines
1.1 KiB
JSON

{
"name": "fluidsynth",
"version": "2.3.1",
"port-version": 1,
"description": "FluidSynth reads and handles MIDI events from the MIDI input device. It is the software analogue of a MIDI synthesizer. FluidSynth can also play midifiles using a Soundfont.",
"homepage": "https://github.com/FluidSynth/fluidsynth",
"license": "LGPL-2.1-or-later",
"dependencies": [
{
"name": "alsa",
"platform": "linux"
},
{
"name": "fluidsynth",
"host": true,
"default-features": false,
"features": [
"buildtools"
]
},
"glib",
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"buildtools": {
"description": "Build tools gentables"
},
"sndfile": {
"description": "Enable rendering to file and SF3 support",
"dependencies": [
{
"name": "libsndfile",
"default-features": false,
"features": [
"external-libs"
]
}
]
}
}
}