diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/libcanberra/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/libcanberra/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/libcanberra/vcpkg.json | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/vcpkg/ports/libcanberra/vcpkg.json b/vcpkg/ports/libcanberra/vcpkg.json new file mode 100644 index 0000000..5108619 --- /dev/null +++ b/vcpkg/ports/libcanberra/vcpkg.json @@ -0,0 +1,70 @@ +{ + "name": "libcanberra", + "version": "0.30", + "port-version": 4, + "description": "An implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops", + "homepage": "http://0pointer.de/lennart/projects/libcanberra/", + "license": "LGPL-2.1-or-later", + "supports": "!windows | mingw", + "dependencies": [ + "gettext", + "libvorbis" + ], + "default-features": [ + "defaults" + ], + "features": { + "alsa": { + "description": "Enable optional ALSA support", + "dependencies": [ + "alsa" + ] + }, + "defaults": { + "description": "Default features", + "dependencies": [ + { + "name": "libcanberra", + "features": [ + "alsa" + ], + "platform": "linux" + }, + { + "name": "libcanberra", + "features": [ + "null" + ], + "platform": "!linux" + } + ] + }, + "gstreamer": { + "description": "Enable optional GStreamer support", + "dependencies": [ + { + "name": "gstreamer", + "default-features": false + } + ] + }, + "gtk3": { + "description": "Enable optional GTK3 support", + "dependencies": [ + { + "name": "gtk3", + "default-features": false + } + ] + }, + "null": { + "description": "Enable optional null output" + }, + "oss": { + "description": "Enable optional OSS support" + }, + "pulse": { + "description": "Enable optional PulseAudio support" + } + } +} |