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

28 lines
1009 B
Plaintext
Raw Normal View History

2019-11-22 12:08:20 +00:00
#!/bin/bash
# This bash script builds the complete pdf2htmlEX application LOCALLY
# (It does not create the AppImage or Docker images)
export UNATTENDED=--assume-yes
2019-11-23 17:49:43 +00:00
./buildScripts/getBuildTools || { echo 'getBuildTools FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/getDevLibraries || { echo 'getDevLibraries FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/getPoppler || { echo 'getPoppler FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/buildPoppler || { echo 'buildPoppler FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/installPoppler || { echo 'installPoppler FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/getFontforge || { echo 'getFontforge FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/buildFontforge || { echo 'buildFontforge FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/installFontforge || { echo 'installFontforge FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00
2019-11-23 17:49:43 +00:00
./buildScripts/buildPdf2htmlEX || { echo 'buildPdf2htmlEX FAILED' ; exit 1 ; }
./buildScripts/installPdf2htmlEX || { echo 'installPdf2htmlEX FAILED' ; exit 1 ; }
2019-11-22 12:08:20 +00:00