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
|
|
|
|