mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
27 lines
476 B
Bash
Executable File
27 lines
476 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script builds the complete pdf2htmlEX application LOCALLY
|
|
# (It does not create the AppImage or Docker images)
|
|
|
|
export UNATTENDED=--assume-yes
|
|
|
|
./buildScripts/getBuildTools
|
|
|
|
./buildScripts/getDevLibraries
|
|
|
|
./buildScripts/getPoppler
|
|
|
|
./buildScripts/buildPoppler
|
|
|
|
./buildScripts/installPoppler
|
|
|
|
./buildScripts/getFontforge
|
|
|
|
./buildScripts/buildFontforge
|
|
|
|
./buildScripts/installFontforge
|
|
|
|
./buildScripts/buildPdf2htmlEX
|
|
|
|
./buildScripts/installPdf2htmlEX
|