Blame


1 cdf9da3e 2021-09-24 thomas #!/bin/sh
2 cdf9da3e 2021-09-24 thomas
3 c0ec9f52 2022-02-26 thomas [ "$CIRRUS_OS" = "darwin" ] && {
4 c0ec9f52 2022-02-26 thomas export PATH="/usr/local/opt/bison/bin:$PATH"
5 c0ec9f52 2022-02-26 thomas export LDFLAGS="-L/usr/local/opt/ncurses/lib -L/usr/local/opt/openssl@3/lib"
6 c0ec9f52 2022-02-26 thomas export CPPFLAGS="-I/usr/local/opt/ncurses/include -I/usr/local/opt/openssl@3/include"
7 c0ec9f52 2022-02-26 thomas export PKG_CONFIG_PATH="/usr/local/opt/ncurses/lib/pkgconfig"
8 c0ec9f52 2022-02-26 thomas export PKG_CONFIG_PATH="$PKG_CONFIG_PATH:/usr/local/opt/openssl@3/lib/pkgconfig"
9 c0ec9f52 2022-02-26 thomas }
10 c0ec9f52 2022-02-26 thomas
11 cdf9da3e 2021-09-24 thomas ./autogen.sh || exit 1
12 cdf9da3e 2021-09-24 thomas ./configure || exit 1
13 cdf9da3e 2021-09-24 thomas exec make