1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-09-08 01:47:02 +00:00
pdf2htmlEX/buildScripts/getBuildToolsAlpine
2020-06-23 10:52:49 +01:00

32 lines
690 B
Bash
Executable File

#!/bin/sh
# This shell script automates getting the required build tools (apt install)
# set the shell environment variable 'UNATTENDED' to '--assume-yes' for
# unattended use (for example in the .travis.yml script)
echo ""
echo "-------------------------------------------------------------------"
echo "INSTALLING Build Tools (using APK / Alpine)"
echo "-------------------------------------------------------------------"
echo ""
set -ev
sudo apk update
sudo apk add \
sudo \
tar \
wget \
git \
pkgconfig \
ruby \
cmake \
make \
gcc \
g++ \
gettext \
openjdk8 \
jq