mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
36 lines
919 B
Plaintext
36 lines
919 B
Plaintext
# description : Next generation of the python high-level scripting language
|
|
# depends : libffi-32 python2 openssl-32
|
|
|
|
name=python2-32
|
|
version=2.7.18
|
|
release=1
|
|
source="https://www.python.org/ftp/python/$version/Python-$version.tar.xz"
|
|
|
|
build() {
|
|
cd Python-$version
|
|
|
|
export CC="gcc -m32"
|
|
export CXX="g++ -m32"
|
|
export PKG_CONFIG_LIBDIR="/usr/lib32/pkgconfig"
|
|
|
|
sed -i '/#SSL/,+3 s/^#//' Modules/Setup.dist
|
|
|
|
./configure --prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--enable-shared \
|
|
--with-system-expat \
|
|
--with-system-ffi \
|
|
--enable-unicode=ucs4
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
chmod -v 755 $PKG/usr/lib32/libpython2.7.so.1.0
|
|
|
|
mv $PKG/usr/include/python2.7/pyconfig.h $PKG/
|
|
rm -r $PKG/usr/bin $PKG/usr/include $PKG/usr/lib $PKG/usr/share/man
|
|
install -d $PKG/usr/include/python2.7
|
|
mv $PKG/pyconfig.h $PKG/usr/include/python2.7/pyconfig-32.h
|
|
}
|
|
|
|
|