pdf2htmlEX/buildScripts/getFontforge

27 lines
645 B
Plaintext
Raw Permalink Normal View History

#!/bin/sh
2019-11-21 13:31:28 +00:00
# This shell script gets and unpacks the latest fontforge AppImage
2019-11-21 13:31:28 +00:00
# source buildScripts/reSourceVersionEnvs
. buildScripts/reSourceVersionEnvs
2019-11-29 12:11:03 +00:00
echo ""
echo "-------------------------------------------------------------------"
echo "GETTING FontForge sources (using wget)"
echo " (FONTFORGE_VERSION: [$FONTFORGE_VERSION])"
echo "-------------------------------------------------------------------"
echo ""
2020-06-02 11:58:27 +00:00
set -ev
FONTFORGE_SRC=$FONTFORGE_VERSION.tar.gz
2019-11-21 14:13:14 +00:00
rm -rf $FONTFORGE_SRC
rm -rf fontforge
2019-11-21 14:13:14 +00:00
2019-11-21 16:38:40 +00:00
wget https://github.com/fontforge/fontforge/archive/$FONTFORGE_SRC
2019-11-21 14:13:14 +00:00
tar xvf $FONTFORGE_SRC
2019-11-21 13:31:28 +00:00
mv fontforge-$FONTFORGE_VERSION fontforge