blob: ced8f40ec95602fc5c0ff8c5c7cd911ea7664af5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
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/13.0.0/ucd/UnicodeData.txt' >modules/unicode/UnicodeData.txt
mkdir -p static/fonts
test -f static/fonts/mononoki-Regular.woff || {
wget 'https://github.com/madmalik/mononoki/releases/download/1.2/mononoki.zip' -O /tmp/mononoki.zip
trap "rm /tmp/mononoki.zip" EXIT
unzip /tmp/mononoki.zip -d static/fonts/
}
|