mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
20 lines
375 B
Bash
Executable File
20 lines
375 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script automates getting the required build tools (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 \
|
|
git \
|
|
pkg-config \
|
|
ruby \
|
|
cmake \
|
|
make \
|
|
gcc \
|
|
g++ \
|
|
gettext \
|
|
tree
|
|
|