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

24 lines
522 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-21 14:13:14 +00:00
# The ppa is "rather old" ;-(
#sudo add-apt-repository ppa:fontforge/fontforge
#sudo apt-get update
#sudo apt-get install libfontforge-dev
source buildScripts/versionEnvs
rm -rf $FONTFORGE_APPIMAGE
rm -rf squashfs-root
rm -rf fontforge
wget https://github.com/fontforge/fontforge/releases/download/$FONTFORGE_VERSION/$FONTFORGE_APPIMAGE
chmod a+x $FONTFORGE_APPIMAGE
./$FONTFORGE_APPIMAGE --appimage-extract
mv squashfs-root fontforge
2019-11-21 13:31:28 +00:00