diff options
Diffstat (limited to 'vcpkg/ports/python3/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/python3/vcpkg.json | 104 |
1 files changed, 104 insertions, 0 deletions
diff --git a/vcpkg/ports/python3/vcpkg.json b/vcpkg/ports/python3/vcpkg.json new file mode 100644 index 0000000..9e0d549 --- /dev/null +++ b/vcpkg/ports/python3/vcpkg.json @@ -0,0 +1,104 @@ +{ + "name": "python3", + "version": "3.12.9", + "port-version": 7, + "description": "The Python programming language", + "homepage": "https://github.com/python/cpython", + "license": "Python-2.0", + "supports": "!uwp & !mingw", + "dependencies": [ + { + "name": "gettext-libintl", + "platform": "!windows" + }, + { + "name": "libiconv", + "platform": "!windows" + }, + { + "name": "libuuid", + "platform": "!osx & !windows" + }, + { + "name": "python3", + "host": true, + "default-features": false + }, + { + "name": "python3", + "features": [ + "extensions" + ], + "platform": "!windows" + }, + { + "name": "vcpkg-get-python", + "host": true + }, + { + "name": "vcpkg-make", + "host": true, + "platform": "!windows" + }, + { + "name": "vcpkg-msbuild", + "host": true, + "platform": "windows" + }, + "zlib" + ], + "default-features": [ + { + "name": "extensions", + "platform": "!(staticcrt & windows)" + } + ], + "features": { + "extensions": { + "description": "Allow the build and usage of python extensions. On windows this requires python to be a dynamic library!", + "supports": "!(staticcrt & windows)", + "dependencies": [ + { + "name": "bzip2", + "default-features": false + }, + { + "name": "expat", + "default-features": false + }, + { + "name": "libffi", + "default-features": false + }, + { + "name": "liblzma", + "default-features": false + }, + { + "name": "ncurses", + "platform": "!windows | mingw" + }, + { + "name": "openssl", + "default-features": false + }, + { + "name": "sqlite3", + "default-features": false + }, + { + "name": "vcpkg-pkgconfig-get-modules", + "host": true, + "platform": "windows & !mingw" + } + ] + }, + "readline": { + "description": "Build with readline.", + "supports": "!windows", + "dependencies": [ + "readline" + ] + } + } +} |