2016-01-29 20:56:05 -05:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
|
|
# http://paperjs.org/
|
|
|
|
#
|
2020-05-23 16:24:42 -04:00
|
|
|
# Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey
|
|
|
|
# http://juerglehni.com/ & https://puckey.studio/
|
2016-01-29 20:56:05 -05:00
|
|
|
#
|
|
|
|
# Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
#
|
|
|
|
# All rights reserved.
|
|
|
|
|
|
|
|
# Download and instal assets, but only if they haven't been installed from the
|
|
|
|
# cache yet.
|
|
|
|
if [ ! -d ~/.assets ] || [ -z "$(ls -A ~/.assets)" ]; then
|
|
|
|
mkdir -p ~/.assets
|
|
|
|
wget http://sourceforge.net/p/tellmatic/git/ci/master/tree/img/arial.ttf?format=raw -O ~/.assets/arial.ttf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Install fonts each time, as they can't be cached in Travis.
|
|
|
|
mkdir -p ~/.fonts
|
|
|
|
cp -p ~/.assets/arial.ttf ~/.fonts
|
|
|
|
fc-cache -f -v
|