summaryrefslogtreecommitdiff
path: root/install_prepare.sh
blob: 7889ade2e4d0cbf97f8d6533ee77d2c02c8f7dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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/
}