1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-04 17:18:40 +00:00
pdf2htmlEX/buildScripts/getFontforge

25 lines
601 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
echo ""
echo "-------------------------------------------------------------------"
echo "GETTING FontForge sources (using wget)"
echo " (FONTFORGE_VERSION: [$FONTFORGE_VERSION])"
echo "-------------------------------------------------------------------"
echo ""
2019-11-28 12:04:22 +00:00
source buildScripts/reSourceVersionEnvs
2019-11-21 14:13:14 +00:00
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