CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
python: updated to 2.7.17
[ports/opt-arm.git] / python / Pkgfile
1 # Description: Python interpreter, version 2.7
2 # URL: http://www.python.org
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: db gdbm openssl bzip2 zlib sqlite3
6
7 name=python
8 version=2.7.17
9 release=1
10 source=(http://www.python.org/ftp/$name/$version/Python-$version.tar.xz \
11 pyconfig.h)
12
13 build () {
14 cd Python-$version
15
16 export CFLAGS="-O2 -pipe -mfloat-abi=hard"
17 export CXXFLAGS="$CFLAGS"
18
19 # set OPT to the python default without -O3
20 # our CFLAGS are used as well
21 OPT="-Wall -Wstrict-prototypes -fwrapv" \
22 ./configure --prefix=/usr \
23 --enable-shared \
24 --with-threads \
25 --enable-ipv6
26
27 make
28 make -j1 DESTDIR=$PKG install
29
30 # fix issue with man-page symlink
31 ln -sf python2.7.1 $PKG/usr/share/man/man1/python.1
32
33 ln -sf python2.7 $PKG/usr/bin/python
34 ln -s python2.7 $PKG/usr/lib/python
35 ln -s python2.7 $PKG/usr/include/python
36 ln -s /usr/lib/libpython2.7.so $PKG/usr/lib/python2.7/config/libpython2.7.so
37
38 rm -r $PKG/usr/lib/python/{bsddb,ctypes,email,sqlite3}/test
39 rm -r $PKG/usr/lib/python/{distutils,json,lib2to3}/tests
40 rm $PKG/usr/lib/python/{distutils,site-packages,test/data}/README
41 rm $PKG/usr/lib/python/idlelib/{ChangeLog,{NEWS,README,TODO}.txt}
42 rm $PKG/usr/lib/python/ctypes/macholib/README.ctypes
43
44 mv $PKG/usr/include/python2.7/pyconfig{,-32}.h
45 install -m 0644 $SRC/pyconfig.h $PKG/usr/include/python2.7/
46 }