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

23 lines
454 B
Bash
Executable File

#!/bin/bash
# This bash script gets and unpacks the latest fontforge AppImage
source buildScripts/versionEnvs
FONTFORGE_SRC=$FONTFORGE_VERSION.tar.gz
rm -rf $FONTFORGE_SRC
rm -rf fontforge
wget https://github.com/fontforge/fontforge/archive/$FONTFORGE_SRC
tar xvf $FONTFORGE_SRC
mv fontforge-$FONTFORGE_VERSION fontforge
# FIX required for fontforge 20170731 raw sources
#
cd fontforge
#
patch -p 1 < ../patches/fontforge-20170731-fixGDraw.patch