1parameters: 2 packages: '' 3 4steps: 5 - script: | 6 brew install pkg-config \ 7 autoconf \ 8 bison \ 9 re2c 10 displayName: 'Install Build Tools' 11 - script: | 12 brew install openssl@1.1 \ 13 krb5 \ 14 bzip2 \ 15 enchant \ 16 libffi \ 17 libpng \ 18 webp \ 19 freetype \ 20 intltool \ 21 icu4c \ 22 libiconv \ 23 zlib \ 24 t1lib \ 25 gd \ 26 libzip \ 27 gmp \ 28 tidyp \ 29 libxml2 \ 30 libxslt \ 31 postgresql 32 brew link icu4c gettext --force 33 displayName: 'Install Build Dependencies' 34