mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-21 20:50:07 +00:00
corrected the apt get scripts
This commit is contained in:
parent
2e618dbac4
commit
f82e1cbd58
@ -2,14 +2,17 @@
|
|||||||
|
|
||||||
# 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
|
||||||
aptitude \
|
# unattended use (for example in the .travis.yml script)
|
||||||
git \
|
|
||||||
pkg-config \
|
sudo apt $UNATTENDED install \
|
||||||
ruby \
|
aptitude \
|
||||||
cmake \
|
git \
|
||||||
make \
|
pkg-config \
|
||||||
gcc \
|
ruby \
|
||||||
g++ \
|
cmake \
|
||||||
tree
|
make \
|
||||||
|
gcc \
|
||||||
|
g++ \
|
||||||
|
tree
|
||||||
|
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
#!/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
|
||||||
libcairo-dev \
|
# unattended use (for example in the .travis.yml script)
|
||||||
libspiro-dev \
|
|
||||||
libpng-dev \
|
sudo apt $UNATTENDED install \
|
||||||
libjpeg-dev \
|
libcairo-dev \
|
||||||
poppler-data \
|
libspiro-dev \
|
||||||
libpango1.0-dev \
|
libpng-dev \
|
||||||
|
libjpeg-dev \
|
||||||
|
poppler-data \
|
||||||
|
libpango1.0-dev \
|
||||||
liblcms2-dev
|
liblcms2-dev
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user