1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 10:20:33 +00:00
pdf2htmlEX/buildScripts/buildFontforge

30 lines
429 B
Plaintext
Raw Normal View History

#!/bin/bash
# This bash script build FontForge
source buildScripts/versionEnvs
2019-11-21 16:03:35 +00:00
cd fontforge
./bootstrap
./configure
2019-11-23 06:23:30 +00:00
# Apply any patches required for fontforge raw sources before we make
#
for APATCHFILE in $(ls ../patches/fontforge-$FONTFORGE_VERSION-*)
do
echo "patching fontforge using [$APATCHFILE]"
2019-11-23 06:23:30 +00:00
patch -p 1 < $APATCHFILE
done
2019-11-26 09:45:56 +00:00
tree /usr/include/python2.7
2019-11-26 10:13:40 +00:00
cd fontforge
2019-11-26 09:54:05 +00:00
make -n
2019-11-26 10:13:40 +00:00
cd ..
2019-11-26 09:54:05 +00:00
make
#make $MAKE_PARALLEL