mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-12 23:41:44 +08:00
397d3d7188
* [vcpkg osx ci] update to newer bits these ones should actually work! * update vagrantfile * correct scripts, reformat, add docs * Finish Get-InternalBaseBox, move archives In order to avoid people maliciously deleting the boxes, the archives share and file share are in different users now. * baseline libqcow to be fixed later * actually check for the mount point * fix Install-Prerequisites again * add +x to Get-InternalBaseBox.ps1 additionally, fix some errors
79 lines
1.5 KiB
JSON
79 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"definitions": {
|
|
"sha256": {
|
|
"type": "string",
|
|
"pattern": "[A-Z0-9]{64}"
|
|
}
|
|
},
|
|
"required": [
|
|
"Applications",
|
|
"Brew",
|
|
"VBoxExtensions"
|
|
],
|
|
"properties": {
|
|
"Applications": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"TestCommand": {
|
|
"type": "string"
|
|
},
|
|
"DmgUrl": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"Sha256": {
|
|
"$ref": "#/definitions/sha256"
|
|
},
|
|
"InstallerPath": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"Brew": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": [ "Name" ],
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"Kind": {
|
|
"type": "string",
|
|
"enum": [ "cask" ]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"VBoxExtensions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"FullName": {
|
|
"type": "string"
|
|
},
|
|
"Url": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"Sha256": {
|
|
"$ref": "#/definitions/sha256"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|