add dependencies for n64splat

This commit is contained in:
Alex Bates 2020-08-20 12:40:24 +01:00
parent 97e390269f
commit f9ddece6cb
No known key found for this signature in database
GPG Key ID: 5E11C2DB78877706
1 changed files with 7 additions and 5 deletions

View File

@ -1,14 +1,15 @@
#!/bin/bash
# Ubuntu
if command -v apt-install &> /dev/null; then
if command -v apt-get &> /dev/null; then
echo "Installing packages for Ubuntu"
sudo apt install -y git build-essential binutils-mips-linux-gnu zlib1g-dev libcapstone-dev libyaml-dev gcc-multilib || exit 1
sudo apt-get install -y git python3 python3-pip build-essential binutils-mips-linux-gnu zlib1g-dev libyaml-dev gcc-multilib || exit 1
python3 -m pip install capstone
if [[ $1 == "--extra" ]]; then
echo "Installing extra"
sudo apt install -y python3 python3-pip clang-tidy astyle || exit 1
sudo apt-get install -y clang-tidy astyle || exit 1
python3 -m pip install stringcase || exit 1
fi
@ -24,7 +25,8 @@ if command -v pacman &> /dev/null; then
sudo pacman -Syu || exit 1
# Install dependencies
sudo pacman -S --noconfirm --needed git base-devel zlib capstone libyaml lib32-glibc || exit 1
sudo pacman -S --noconfirm --needed git python python-pip base-devel zlib libyaml lib32-glibc || exit 1
python3 -m pip install capstone
# Install binutils if required
if ! command -v mips-linux-gnu-ar &> /dev/null; then
@ -48,7 +50,7 @@ if command -v pacman &> /dev/null; then
if [[ $1 == "--extra" ]]; then
echo "Installing extra"
sudo pacman -S --noconfirm --needed python python-pip clang astyle || exit 1
sudo pacman -S --noconfirm --needed clang astyle || exit 1
python3 -m pip install stringcase || exit 1
fi