mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-20 03:44:18 +08:00
39 lines
981 B
Bash
39 lines
981 B
Bash
VERSION=3.7.4
|
|
TAR=https://www.python.org/ftp/python/$VERSION/Python-$VERSION.tar.xz
|
|
BUILD_DEPENDS=(openssl)
|
|
|
|
export CONFIG_SITE=config.site
|
|
|
|
function recipe_version {
|
|
echo "$VERSION"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_build {
|
|
export LDFLAGS="-static"
|
|
cp ../config.site ./
|
|
./configure \
|
|
--build=${BUILD} \
|
|
--host=${HOST} \
|
|
--build=${ARCH} \
|
|
--prefix=/ \
|
|
--disable-ipv6
|
|
sed -i 's|#define HAVE_PTHREAD_KILL 1|/* #undef HAVE_PTHREAD_KILL */|g' pyconfig.h
|
|
sed -i 's|#define HAVE_SCHED_SETSCHEDULER 1|/* #undef HAVE_SCHED_SETSCHEDULER */|g' pyconfig.h
|
|
sed -i 's|#define HAVE_SYS_RESOURCE_H 1|/* #undef HAVE_SYS_RESOURCE_H */|g' pyconfig.h
|
|
"$REDOX_MAKE" -j"$($NPROC)"
|
|
skip=1
|
|
}
|
|
|
|
function recipe_clean {
|
|
"$REDOX_MAKE" clean
|
|
skip=1
|
|
}
|
|
|
|
function recipe_stage {
|
|
dest="$(realpath $1)"
|
|
"$REDOX_MAKE" DESTDIR="$dest" install -j"$($NPROC)"
|
|
"$STRIP" "$dest/bin/python3.7" "$dest/bin/python3.7m"
|
|
skip=1
|
|
}
|