aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/python.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chapter8/python.sh')
-rw-r--r--chapter8/python.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/chapter8/python.sh b/chapter8/python.sh
new file mode 100644
index 0000000..f0e1ce9
--- /dev/null
+++ b/chapter8/python.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+./configure --prefix=/usr \
+ --enable-shared \
+ --with-system-expat \
+ --with-system-ffi \
+ --with-ensurepip=yes
+
+make
+
+make -j1 install
+
+install -v -dm755 /usr/share/doc/python-"${VERSION}"/html
+
+tar --strip-components=1 \
+ --no-same-owner \
+ --no-same-permissions \
+ -C /usr/share/doc/python-"${VERSION}"/html \
+ -xvf ../python-"${VERSION}"-docs-html.tar.bz2