extpython/src/bionic-3.7.3.sh

14 lines
643 B
Bash
Raw Normal View History

2019-05-31 09:07:08 -07:00
#!/bin/bash -eux
2019-05-31 07:41:20 -07:00
2019-05-31 14:26:56 -07:00
# Which dist to build on
export EXTPYTHON_DIST=bionic
2019-05-31 09:23:34 -07:00
# Release is used to select which tarball to download
2019-05-31 07:41:20 -07:00
export PYTHON_RELEASE=3.7.3
2019-05-31 09:23:34 -07:00
# Major version no is used in paths and labels (extpython-python${}, /opt/extpython/${}/...)
2019-05-31 09:07:08 -07:00
export PYTHON_MAJOR=3.7
2019-05-31 09:23:34 -07:00
# Tarball download URL
2019-05-31 07:41:20 -07:00
export PYTHON_TARBALL="http://artifact.scc.net.davepedu.com/repo/tar/cpython/cpython/cpython-${PYTHON_RELEASE}.tar.gz"
2019-05-31 09:23:34 -07:00
# Deps needed to build this package
2019-05-31 07:41:20 -07:00
export CPYTHON_DEPS="libssl-dev zlib1g-dev libncurses5-dev libncursesw5-dev \
libreadline-dev libsqlite3-dev libgdbm-dev libdb5.3-dev libbz2-dev libexpat1-dev liblzma-dev tk-dev libffi-dev"