Skip to content

Instantly share code, notes, and snippets.

@snodnipper
Created April 29, 2016 19:21
Show Gist options
  • Save snodnipper/8f94f016b4c79c83fcb53c7b1359a649 to your computer and use it in GitHub Desktop.
Save snodnipper/8f94f016b4c79c83fcb53c7b1359a649 to your computer and use it in GitHub Desktop.
Checkout Google Fonts and create Mapbox PBFs
#!/bin/bash
git clone git@github.com:google/fonts.git
git clone git@github.com:mapbox/node-fontnik.git
cd node-fontnik/
npm install
cd ..
echo "converting fonts"
find ./fonts/apache -type f -name *.ttf | sed -e 's/\(.*\/\)\([^/]*\)\(.ttf\)$/mkdir -p mbfonts\/\2;.\/node-fontnik\/bin\/build-glyphs \1\2\3 mbfonts\/\2 /g' | bash
echo "done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment