mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
36 lines
1017 B
Bash
Executable File
36 lines
1017 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This shell script automates getting the required build tools (dnf install)
|
|
|
|
# set the shell environment variable 'UNATTENDED' to
|
|
# '--setopt=install_weak_deps=False' for unattended use (for example in
|
|
# the .travis.yml script)
|
|
|
|
echo ""
|
|
echo "-------------------------------------------------------------------"
|
|
echo "INSTALLING Build Tools (using DNF)"
|
|
echo " (UNATTENDED: [$UNATTENDED])"
|
|
echo "-------------------------------------------------------------------"
|
|
echo ""
|
|
|
|
set -ev
|
|
|
|
sudo dnf $UNATTENDED install \
|
|
sudo \
|
|
wget \
|
|
git \
|
|
pkg-config \
|
|
ruby \
|
|
autoconf \
|
|
libtool \
|
|
cmake \
|
|
make \
|
|
gcc \
|
|
g++ \
|
|
dpkg \
|
|
dpkg-dev \
|
|
gettext \
|
|
java-1.8.0-openjdk-headless \
|
|
jq
|
|
|