#!/usr/bin/env bash set -xeuo pipefail abbrgen_execname="modules/abbrgen/abbreviation_gen_`uname`" test -f "$abbrgen_execname" || \ g++ -Wall -Wextra -std=c++11 -O3 -o "$abbrgen_execname" modules/abbrgen/abbreviation_gen.cpp test -f modules/unicode/UnicodeData.txt || \ curl -Ls 'https://www.unicode.org/Public/15.0.0/ucd/UnicodeData-15.0.0d5.txt' >modules/unicode/UnicodeData.txt mkdir -p static/fonts test -f static/fonts/mononoki-Regular.woff || { tmpdir=$(mktemp -d) trap "rm -rf '$tmpdir'" EXIT wget 'https://github.com/madmalik/mononoki/releases/download/1.2/mononoki.zip' -O "$tmpdir"/mononoki.zip unzip "$tmpdir"/mononoki.zip -d static/fonts/ }