mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
20 lines
359 B
Bash
Executable File
20 lines
359 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script build FontForge
|
|
|
|
source buildScripts/versionEnvs
|
|
|
|
cd fontforge
|
|
./bootstrap
|
|
./configure
|
|
|
|
# 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]"
|
|
patch -p 1 < $APATCHFILE
|
|
done
|
|
|
|
make -j `nproc`
|