source: custom/examples/945-python3

trunk
Last change on this file was fd4a798, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove $Id$ comments, they are useless with git

  • Property mode set to 100644
File size: 541 bytes
Line 
1PKG="python3"
2PKG_VERSION="3.4.3"
3PKG_FILE="Python-3.4.3.tar.xz"
4URL="https://www.python.org/ftp/python/3.4.3/${PKG_FILE}"
5MD5="7d092d1bba6e17f0d9bd21b49e441dd5"
6for i in PATCH{1..10}; do
7 unset $i
8done
9
10( cat << "xEOFx"
11CXX="/usr/bin/g++" \
12./configure --prefix=/usr \
13 --enable-shared \
14 --with-system-expat \
15 --with-system-ffi \
16 --without-ensurepip &&
17make
18make install &&
19chmod -v 755 /usr/lib/libpython3.4m.so &&
20chmod -v 755 /usr/lib/libpython3.so
21xEOFx
22) > tmp
Note: See TracBrowser for help on using the repository browser.