Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save skinzor/15b9b5325b5772566138bb242290cc90 to your computer and use it in GitHub Desktop.
Save skinzor/15b9b5325b5772566138bb242290cc90 to your computer and use it in GitHub Desktop.
#!/bin/bash
if [ $UID != "0" ]; then
echo "ERROR: You must run this script as root!"
exit 1
fi
dnf install \
@development-tools \
android-tools \
automake \
bison \
bzip2 \
bzip2-libs \
ccache \
curl \
dpkg-dev \
gcc \
gcc-c++ \
gperf \
java-1.8.0-openjdk \
libstdc++.i686 \
libxml2-devel \
lz4-libs \
lzop \
make \
maven \
ncurses-compat-libs \
optipng \
pngcrush \
python \
python3 \
python3-mako \
python-mako \
python-networkx \
schedtool \
squashfs-tools \
syslinux-devel \
zip \
zlib-devel \
zlib-devel.i686
curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo && chmod +x /usr/bin/repo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment