41 lines
958 B
Bash
41 lines
958 B
Bash
# Set the package we're building.
|
|
package="Python-3.12.5"
|
|
extension=".tar.xz"
|
|
|
|
# Decompress the source.
|
|
echo "Unpacking ${package}${extension} ..."
|
|
tar xvf ${package}${extension}
|
|
|
|
# Enter the unpacked sources.
|
|
echo "Entering ${package} directory ..."
|
|
cd ${package}
|
|
|
|
# LFS commands.
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--with-system-expat \
|
|
--enable-optimizations
|
|
make
|
|
make test TESTOPTS="--timeout 120"
|
|
make install
|
|
cat > /etc/pip.conf << EOF
|
|
[global]
|
|
root-user-action = ignore
|
|
disable-pip-version-check = true
|
|
EOF
|
|
install -v -dm755 /usr/share/doc/python-3.12.5/html
|
|
|
|
tar --no-same-owner \
|
|
-xvf ../python-3.12.5-docs-html.tar.bz2
|
|
cp -R --no-preserve=mode python-3.12.5-docs-html/* \
|
|
/usr/share/doc/python-3.12.5/html
|
|
|
|
|
|
# Exit sources directory.
|
|
echo "Exiting ${package} directory ..."
|
|
cd ..
|
|
|
|
# Remove the directory of source files.
|
|
echo "Removing ${package} directory ..."
|
|
rm -rf ${package}
|