# Description: Environnement de développement python # URL: http://www.python.org # Maintainer: NuTyX core team # Packager: thierryn1 at hispeed dot ch # Depends on: pth, sqlite3 name=python version=3.1.3 release=2 source=( http://www.python.org/ftp/python/$version/Python-$version.tar.bz2) build() { cd Python-$version sed -i "s/ndbm_libs = \[\]/ndbm_libs = ['gdbm', 'gdbm_compat']/" setup.py ./configure --prefix=/usr \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ --enable-shared \ --with-threads \ --with-computed-gotos \ --enable-ipv6 \ --with-wide-unicode \ --with-system-ffi make make DESTDIR=$PKG install ln -sf python3 $PKG/usr/bin/python ln -sf python3-config $PKG/usr/bin/python-config ln -sf idle3 $PKG/usr/bin/idle ln -sf pydoc3 $PKG/usr/bin/pydoc rm $PKG/usr/bin/2to3 }