1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-04 17:18:40 +00:00
pdf2htmlEX/buildScripts/getBuildTools

36 lines
1.0 KiB
Plaintext
Raw Normal View History

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)
echo ""
echo "-------------------------------------------------------------------"
echo "INSTALLING Build Tools (using APT)"
echo " (UNATTENDED: [$UNATTENDED])"
echo "-------------------------------------------------------------------"
echo ""
2020-06-02 11:58:27 +00:00
set -ev
2019-11-25 22:06:17 +00:00
sudo apt-get update
2020-05-31 08:03:43 +00:00
sudo apt-get $UNATTENDED install \
sudo \
2020-06-09 11:52:18 +00:00
wget \
2020-05-31 08:03:43 +00:00
git \
pkg-config \
ruby \
autoconf \
libtool \
cmake \
make \
gcc \
g++ \
dpkg \
dpkg-dev \
2020-05-31 08:03:43 +00:00
gettext \
openjdk-8-jre-headless \
2020-06-09 11:52:18 +00:00
jq
2019-11-21 15:36:04 +00:00