summaryrefslogtreecommitdiff
path: root/azure/macos/brew.yml
blob: 36915969eb61d9f753b944ed9cf4b31c3fe24a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
parameters:
  packages: ''

steps:
  - script: |
      /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
    displayName: 'Install Homebrew'
  - script: |
      brew install pkg-config \
                   autoconf \
                   bison \
                   re2c
    displayName: 'Install Build Tools'
  - script: |
      brew install openssl@1.1 \
                   krb5 \
                   bzip2 \
                   enchant \
                   libffi \
                   libpng \
                   webp \
                   freetype \
                   intltool \
                   icu4c \
                   libiconv \
                   zlib \
                   t1lib \
                   gd \
                   libzip \
                   gmp \
                   tidyp \
                   libxml2 \
                   libxslt \
                   postgresql
      brew link icu4c gettext --force
    displayName: 'Install Build Dependencies'