mirror of
https://github.com/RGBCube/serenity
synced 2025-07-08 03:27:35 +00:00

This now requires `--host` and `--with-build-python` to be passed to the configure script when cross compiling; the former we simply do like in many other package.sh scripts as well, the latter we point to `python3`, which is expected to match the port's version anyway.
5 lines
365 B
Bash
5 lines
365 B
Bash
PYTHON_VERSION="3.11.0"
|
|
PYTHON_VERSION_WITHOUT_SUFFIX="3.11.0" # PYTHON_VERSION but without the a1/b1/rc1/... suffix
|
|
PYTHON_ARCHIVE="Python-${PYTHON_VERSION}.tar.xz"
|
|
PYTHON_ARCHIVE_URL="https://www.python.org/ftp/python/${PYTHON_VERSION_WITHOUT_SUFFIX}/${PYTHON_ARCHIVE}"
|
|
PYTHON_ARCHIVE_SHA256SUM="a57dc82d77358617ba65b9841cee1e3b441f386c3789ddc0676eca077f2951c3"
|