From e9ec3744551495b685c6968e141a3a8b5556d12d Mon Sep 17 00:00:00 2001 From: Stephen Gaito Date: Wed, 4 Dec 2019 13:34:04 +0000 Subject: [PATCH] updated homeBrew script --- buildScripts/travisLinuxBrewDoItAll | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/buildScripts/travisLinuxBrewDoItAll b/buildScripts/travisLinuxBrewDoItAll index e105eb9..642fe16 100755 --- a/buildScripts/travisLinuxBrewDoItAll +++ b/buildScripts/travisLinuxBrewDoItAll @@ -6,9 +6,14 @@ # https://docs.travis-ci.com/user/installing-dependencies/#using-homebrew-without-addon-on-older-macos-images # For details on obtaining/using the correct ruby version for homebrew. -sudo apt-get update -sudo apt-get install gcc-5 # many of the linuxBrew bottles are compiled with gcc-5 - brew tap pdf2htmlEX/homebrew-brewTap brew update + +# many of the linuxBrew bottles are compiled with gcc-5 so we need to +# explicity install it! +# +brew install gcc@5 + +# Now use brew to install pdf2htmlEX (and its dependencies) +# brew install pdf2htmlex-new -s --cc=gcc-5