mirror of
https://github.com/mapbox/node-fontnik.git
synced 2025-12-08 20:16:18 +00:00
20 lines
296 B
Bash
Executable File
20 lines
296 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
function install() {
|
|
mason install $1 $2
|
|
mason link $1 $2
|
|
}
|
|
|
|
# setup mason
|
|
./scripts/setup.sh --config local.env
|
|
source local.env
|
|
|
|
install boost 1.67.0
|
|
install freetype 2.7.1
|
|
install protozero 1.6.8
|
|
install sdf-glyph-foundry 0.2.0
|
|
install gzip-hpp 0.1.0
|