mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 18:59:07 +08:00
0fec1340eb
* [vcpkg docs] add docs for manifest files These are just for the maintainer docs, not user docs. * [vcpkg] EBNF-ify platform expression parsing this modifies nothing about what strings are accepted or rejected, it just moves stuff around. also adds tests. * [vcpkg docs] add manifest mode example * [wip] docs for augustin also fix tabs * [vcpkg manifest] switch to using maps for features * Apply suggestions from code review * un-experimentize format-manifest * flesh out the user manifest mode docs * CRs * billy CRs * final personal pass-thru
22 lines
551 B
JSON
22 lines
551 B
JSON
{
|
|
"name": "libsndfile",
|
|
"version-string": "1.0.29",
|
|
"port-version": 11,
|
|
"description": "Library to read, write and manipulate many soundfile types. Authored by Eric de Castro Lopo",
|
|
"homepage": "https://github.com/erikd/libsndfile",
|
|
"license": "LGPL-2.1",
|
|
"default-features": [
|
|
"external-libs"
|
|
],
|
|
"features": {
|
|
"external-libs": {
|
|
"description": "Default feature. Enables Ogg Vorbis, FLAC and Ogg Opus formats support.",
|
|
"dependencies": [
|
|
"libflac",
|
|
"libvorbis",
|
|
"opus"
|
|
]
|
|
}
|
|
}
|
|
}
|