1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
pdf2htmlEX/buildScripts/getBuildToolsHomeBrew

29 lines
581 B
Plaintext
Raw Normal View History

#!/bin/bash
# This bash script automates getting the required build tools (brew install)
echo ""
echo "-------------------------------------------------------------------"
echo "INSTALLING Build Tools (using Home/Linux Brew)"
echo "-------------------------------------------------------------------"
echo ""
2020-06-02 11:58:27 +00:00
set -ev
brew update
2020-06-02 04:14:34 +00:00
brew install \
autoconf \
libtool \
make \
gettext \
openjdk \
jq \
tree
# Removed the following for homeBrew (macos on travis)
# git \
# pkg-config \
# cmake \
# ruby \
# gcc \