1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-06-25 05:48:21 +00:00
pdf2htmlEX/buildScripts/getBuildToolsApt

35 lines
1.1 KiB
Bash
Executable File

#!/bin/bash
# This bash script automates getting the required build tools (apt install)
# 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 ""
sudo apt-get update
sudo apt-get $UNATTENDED install \
aptitude \
git \
pkg-config \
ruby \
autoconf \
libtool \
cmake \
make \
gcc \
g++ \
build-essential \
dpkg-dev \
devscripts \
gettext \
openjdk-8-jre-headless \
jq \
tree