# Depends on static-musl with share lib

# Exit on error:
set -e

wget https://python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz
tar xf Python-2.7.8.tar.xz
cd Python-2.7.8

CC=/static/bin/musl-gcc \
    ./configure --prefix=/static \
    --enable-shared

make install
cd ..
rm -rf Python-2.7.8
rm Python-2.7.8.tar.xz

exit 0
