updated getFontForge

This commit is contained in:
Stephen Gaito 2019-11-21 14:13:14 +00:00
parent 87ecadd589
commit 3f943cddeb
4 changed files with 22 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
fontforge*
FontForge*
poppler*
build
compile_commands.json

View File

@ -2,7 +2,22 @@
# This bash script gets and unpacks the latest fontforge AppImage
sudo add-apt-repository ppa:fontforge/fontforge
sudo apt-get update
sudo apt-get install libfontforge-dev
# 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

View File

@ -7,6 +7,7 @@ source buildScripts/versionEnvs
echo "Getting poppler version: $POPPLER_VERSION"
rm -rf $POPPLER_VERSION.tar.xz
rm -rf poppler
wget https://poppler.freedesktop.org/$POPPLER_VERSION.tar.xz

View File

@ -6,4 +6,4 @@
export POPPLER_VERSION=poppler-0.82.0
export FONTFORGE_VERSION=20190801
export FONTFORGE_APPIMAGE=https://github.com/fontforge/fontforge/releases/download/20190801/FontForge-2019-08-01-ac635b8-x86_64.AppImage
export FONTFORGE_APPIMAGE=FontForge-2019-08-01-ac635b8-x86_64.AppImage