1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00
wezterm/ci/build_harfbuzz.sh

15 lines
151 B
Bash
Raw Normal View History

2019-02-19 19:59:39 +03:00
#!/bin/bash
2018-02-23 08:48:49 +03:00
set -e
set -x
2019-02-19 19:59:39 +03:00
case "$OSTYPE" in
darwin*)
;;
*)
cd ci/harfbuzz
./autogen.sh --prefix=$PREFIX
make install
;;
esac
2018-02-23 08:48:49 +03:00