Avoid issues with the licensing mafia, see:
https://github.com/Homebrew/homebrew-core/pull/59094
Closes GH-5932.
- script: |
brew install pkg-config \
autoconf \
- bison \
- re2c
+ bison
displayName: 'Install Build Tools'
- script: |
brew install openssl@1.1 \
brew upgrade libzip
brew link icu4c gettext --force
displayName: 'Install Build Dependencies'
+ - script: |
+ wget https://github.com/skvadrik/re2c/releases/download/2.0.1/re2c-2.0.1.tar.xz
+ tar -xf re2c-2.0.1.tar.xz
+ cd re2c-2.0.1
+ ./configure
+ make -j$(sysctl -n hw.ncpu)
+ make install
+ displayName: 'Build re2c'