2019-11-21 15:36:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This bash script automates getting the required build tools (apt install)
|
|
|
|
|
2019-11-21 15:54:21 +00:00
|
|
|
# set the bash environment variable 'UNATTENDED' to '--assume-yes' for
|
|
|
|
# unattended use (for example in the .travis.yml script)
|
|
|
|
|
|
|
|
sudo apt $UNATTENDED install \
|
|
|
|
aptitude \
|
|
|
|
git \
|
|
|
|
pkg-config \
|
|
|
|
ruby \
|
2019-11-21 18:43:26 +00:00
|
|
|
autoconf \
|
|
|
|
libtool \
|
2019-11-21 15:54:21 +00:00
|
|
|
cmake \
|
|
|
|
make \
|
|
|
|
gcc \
|
|
|
|
g++ \
|
2019-11-21 16:33:24 +00:00
|
|
|
gettext \
|
2019-11-21 18:43:26 +00:00
|
|
|
openjdk-8-jre-headless \
|
2019-11-21 15:54:21 +00:00
|
|
|
tree
|
2019-11-21 15:36:04 +00:00
|
|
|
|