1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-10-05 19:41:40 +00:00

corrected the apt get scripts

This commit is contained in:
Stephen Gaito 2019-11-21 15:54:21 +00:00
parent 2e618dbac4
commit f82e1cbd58
2 changed files with 25 additions and 19 deletions

View File

@ -2,7 +2,10 @@
# This bash script automates getting the required build tools (apt install) # This bash script automates getting the required build tools (apt install)
sudo apt install \ # set the bash environment variable 'UNATTENDED' to '--assume-yes' for
# unattended use (for example in the .travis.yml script)
sudo apt $UNATTENDED install \
aptitude \ aptitude \
git \ git \
pkg-config \ pkg-config \

View File

@ -1,9 +1,12 @@
#!/bin/bash #!/bin/bash
# This bash script automates the getting of the development libraries # This bash script automates getting the development libraries required to
# required to build poppler and fontforge # build poppler and fontforge
sudo apt install \ # set the bash environment variable 'UNATTENDED' to '--assume-yes' for
# unattended use (for example in the .travis.yml script)
sudo apt $UNATTENDED install \
libcairo-dev \ libcairo-dev \
libspiro-dev \ libspiro-dev \
libpng-dev \ libpng-dev \