3.48. python-3.8.5

#!/bin/sh
# Copyright © 1999-2022 Gerard Beekmans
# Copyright © 2017-2022 Random Crew
# Distributed under the terms of MIT License.


MY_P="Python-${PV}"

Configuration

Without explicit parameter for CXX the python configure does not detect C++ compiler properly.

    CXX="${CXX}" \

src_config()
{
    CXX="${CXX}" \
    ./configure \
        --prefix=${PREFIX}  \
        --enable-shared     \
        --with-system-expat \
        --with-system-ffi   \
        --enable-optimizations
}

Compilation

src_compile()
{
    make ${MAKEOPTS}
}

Installation

html documentation will be installed in separate package.

src_install()
{
    make install ${MAKEOPTS} DESTDIR=${D}
    chmod 755 ${D}${PREFIX}/lib/libpython3.8.so
    chmod 755 ${D}${PREFIX}/lib/libpython3.so
    ln -sf pip3.8 ${D}${PREFIX}/bin/pip3
}

Build code

passinside.sh
python.build

Other files

meta.txt
text

Links

url.lfs: https://linuxfromscratch.org/lfs/view/10.0/chapter08/Python.html
url.lfs.stage1: https://linuxfromscratch.org/lfs/view/10.0/chapter07/Python.html