Last active
July 8, 2024 03:42
-
-
Save puzrin/5537065 to your computer and use it in GitHub Desktop.
Makefile example for fontello.com API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit here - set path to you directory with config.json & fonts | |
FONT_DIR ?= ./assets/vendor/fontello/src | |
### Don't edit below ### | |
FONTELLO_HOST ?= https://fontello.com | |
fontopen: | |
@if test ! `which curl` ; then \ | |
echo 'Install curl first.' >&2 ; \ | |
exit 128 ; \ | |
fi | |
curl --silent --show-error --fail --output .fontello \ | |
--form "config=@${FONT_DIR}/config.json" \ | |
${FONTELLO_HOST} | |
x-www-browser ${FONTELLO_HOST}/`cat .fontello` | |
fontsave: | |
@if test ! `which unzip` ; then \ | |
echo 'Install unzip first.' >&2 ; \ | |
exit 128 ; \ | |
fi | |
@if test ! -e .fontello ; then \ | |
echo 'Run `make fontopen` first.' >&2 ; \ | |
exit 128 ; \ | |
fi | |
rm -rf .fontello.src .fontello.zip | |
curl --silent --show-error --fail --output .fontello.zip \ | |
${FONTELLO_HOST}/`cat .fontello`/get | |
unzip .fontello.zip -d .fontello.src | |
rm -rf ${FONT_DIR} | |
mv `find ./.fontello.src -maxdepth 1 -name 'fontello-*'` ${FONT_DIR} | |
rm -rf .fontello.src .fontello.zip |
I am on a linux machine running ubuntu and when I run the makefile I get the following error:
$ make -f fontello.mk
curl --silent --show-error --fail --output .fontello \
--form "config=@./src/font/config.json" \
http://fontello.com
x-www-browser http://fontello.com/`cat .fontello`
[25445:25481:0629/********:ERROR:browser_gpu_channel_host_factory.cc(103)] Failed to launch GPU process.
Created new window in existing browser session.
has anyone seen this before?
For Mac, with fontsave
target, you can pipe curl
into bsdtar
to save a few immediate steps:
fontsave:
@if test ! `which unzip` ; then \
echo 'Install unzip first.' >&2 ; \
exit 128 ; \
fi
@if test ! -e .fontello ; then \
echo 'Run `make fontopen` first.' >&2 ; \
exit 128 ; \
fi
curl --silent --show-error --fail \
${FONTELLO_HOST}/`cat .fontello`/get \
| bsdtar --strip-components=1 -xf- -C $@
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For Mac, you can use
pipe
to useopen