mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-21 20:50:07 +00:00
updated getFontForge
This commit is contained in:
parent
87ecadd589
commit
3f943cddeb
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,3 +1,5 @@
|
|||||||
|
fontforge*
|
||||||
|
FontForge*
|
||||||
poppler*
|
poppler*
|
||||||
build
|
build
|
||||||
compile_commands.json
|
compile_commands.json
|
||||||
|
@ -2,7 +2,22 @@
|
|||||||
|
|
||||||
# This bash script gets and unpacks the latest fontforge AppImage
|
# This bash script gets and unpacks the latest fontforge AppImage
|
||||||
|
|
||||||
sudo add-apt-repository ppa:fontforge/fontforge
|
# The ppa is "rather old" ;-(
|
||||||
sudo apt-get update
|
#sudo add-apt-repository ppa:fontforge/fontforge
|
||||||
sudo apt-get install libfontforge-dev
|
#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
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ source buildScripts/versionEnvs
|
|||||||
echo "Getting poppler version: $POPPLER_VERSION"
|
echo "Getting poppler version: $POPPLER_VERSION"
|
||||||
|
|
||||||
rm -rf $POPPLER_VERSION.tar.xz
|
rm -rf $POPPLER_VERSION.tar.xz
|
||||||
|
rm -rf poppler
|
||||||
|
|
||||||
wget https://poppler.freedesktop.org/$POPPLER_VERSION.tar.xz
|
wget https://poppler.freedesktop.org/$POPPLER_VERSION.tar.xz
|
||||||
|
|
||||||
|
@ -6,4 +6,4 @@
|
|||||||
export POPPLER_VERSION=poppler-0.82.0
|
export POPPLER_VERSION=poppler-0.82.0
|
||||||
export FONTFORGE_VERSION=20190801
|
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
|
||||||
|
Loading…
Reference in New Issue
Block a user