1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-02 16:25:41 +00:00
pdf2htmlEX/buildScripts/getFontforge

24 lines
600 B
Plaintext
Raw Normal View History

2019-11-21 13:31:28 +00:00
#!/bin/bash
# This bash script gets and unpacks the latest fontforge AppImage
2019-11-29 12:11:03 +00:00
source buildScripts/reSourceVersionEnvs
echo ""
echo "-------------------------------------------------------------------"
echo "GETTING FontForge sources (using wget)"
echo " (FONTFORGE_VERSION: [$FONTFORGE_VERSION])"
echo "-------------------------------------------------------------------"
echo ""
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