#!/bin/bash # # Paper.js - The Swiss Army Knife of Vector Graphics Scripting. # http://paperjs.org/ # # Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey # http://juerglehni.com/ & https://puckey.studio/ # # 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