mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
See: * http://www.shlomifish.org/lecture/C-and-CPP/bad-elements/#trailing-whitespace * http://vim.wikia.com/wiki/Highlight_unwanted_spaces
34 lines
738 B
Bash
Executable file
34 lines
738 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# install as root
|
|
|
|
apt-get install -y \
|
|
git \
|
|
openjdk-8-jdk \
|
|
cython3 \
|
|
python3-pip \
|
|
python3-yaml \
|
|
virtualenv \
|
|
pkg-config \
|
|
automake autoconf libtool \
|
|
zlib1g-dev \
|
|
libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev \
|
|
libtinfo5 \
|
|
lld
|
|
|
|
update-alternatives --set java /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
|
|
|
|
apt-get install -y --no-install-recommends \
|
|
imagemagick \
|
|
python3-tk \
|
|
ccache \
|
|
libltdl-dev
|
|
|
|
# set python3 as default.
|
|
# make python alternatives selectable.
|
|
# (debian stretch, adapt for different versions)
|
|
|
|
update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1
|
|
update-alternatives --install /usr/bin/python python /usr/bin/python3.5 2
|
|
|