# Description: The Python programming language # URL: https://www.python.org/ # Maintainer: KRAK3N Team, extra ports at krak3n dot my # Depends on: expat libffi sqlite name=python version=3.13.9 release=1 source=(https://www.${name}.org/ftp/${name}/${version}/Python-${version}.tar.xz musl-pgo-tests.patch) build() { cd Python-${version} # thanks to zorz from #opencrux patch -Np1 -i ../musl-pgo-tests.patch # musl workaround export ac_cv_file__dev_ptmx=yes export ac_cv_file__dev_ptc=no ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --without-ensurepip \ --enable-shared \ --with-system-expat \ --enable-optimization make make DESTDIR=$PKG altinstall ln -s python${version%.*} $PKG/usr/bin/python ln -s python${version%.*} $PKG/usr/bin/python3 ln -s python${version%.*}-config $PKG/usr/bin/python-config ln -s python${version%.*}-config $PKG/usr/bin/python3-config }