aboutsummaryrefslogtreecommitdiff
path: root/extra/python/build
diff options
context:
space:
mode:
authorCem Keylan <cem@ckyln.com>2019-12-09 19:17:24 +0300
committerCem Keylan <cem@ckyln.com>2019-12-09 19:17:24 +0300
commit03423e0583057cbe5a16f8439183e2dbc0e8dd7c (patch)
tree81fe3ba69d94146f83fb5541d1fb2da0ac4eac08 /extra/python/build
downloadrepository-03423e0583057cbe5a16f8439183e2dbc0e8dd7c.tar.gz
secondary commit
Diffstat (limited to 'extra/python/build')
-rwxr-xr-xextra/python/build19
1 files changed, 19 insertions, 0 deletions
diff --git a/extra/python/build b/extra/python/build
new file mode 100755
index 00000000..19d7173b
--- /dev/null
+++ b/extra/python/build
@@ -0,0 +1,19 @@
+#!/bin/sh -e
+
+patch -p1 < python3-always-pip.patch
+
+./configure \
+ --prefix=/usr \
+ --enable-shared \
+ --with-system-expat \
+ --with-system-ffi \
+ --with-ensurepip=yes
+
+make
+make DESTDIR="$1" install
+
+ln -s python3 "$1/usr/bin/python"
+ln -s pip3 "$1/usr/bin/pip"
+
+# Make static library writable.
+chmod -v u+w "$1/usr/lib/libpython"*