mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
24 lines
522 B
Bash
Executable File
24 lines
522 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script gets and unpacks the latest fontforge AppImage
|
|
|
|
# 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
|
|
|