mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
29 lines
581 B
Bash
Executable File
29 lines
581 B
Bash
Executable File
#!/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 ""
|
|
|
|
set -ev
|
|
|
|
brew update
|
|
brew install \
|
|
autoconf \
|
|
libtool \
|
|
make \
|
|
gettext \
|
|
openjdk \
|
|
jq \
|
|
tree
|
|
|
|
# Removed the following for homeBrew (macos on travis)
|
|
# git \
|
|
# pkg-config \
|
|
# cmake \
|
|
# ruby \
|
|
# gcc \
|