mirror of
https://github.com/pmret/papermario.git
synced 2024-11-18 17:02:46 +01:00
Merge branch 'master' into cornucopia
This commit is contained in:
commit
32885019c7
@ -1,7 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# Ubuntu (apt)
|
# Ubuntu (apt)
|
||||||
if command -v apt &> /dev/null; then
|
if cat /etc/os-release | grep ID=ubuntu &> /dev/null; then
|
||||||
echo "Installing packages for Ubuntu (apt)"
|
echo "Installing packages for Ubuntu (apt)"
|
||||||
|
|
||||||
sudo apt install -y git python3 python3-pip python3-setuptools build-essential binutils-mips-linux-gnu zlib1g-dev libyaml-dev || exit 1
|
sudo apt install -y git python3 python3-pip python3-setuptools build-essential binutils-mips-linux-gnu zlib1g-dev libyaml-dev || exit 1
|
||||||
@ -18,7 +18,7 @@ if command -v apt &> /dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Arch Linux (pacman)
|
# Arch Linux (pacman)
|
||||||
if command -v pacman &> /dev/null; then
|
if cat /etc/os-release | grep ID=arch &> /dev/null; then
|
||||||
echo "Installing packages for Arch Linux (pacman)"
|
echo "Installing packages for Arch Linux (pacman)"
|
||||||
|
|
||||||
# Upgrade existing packages (note: no --noconfirm)
|
# Upgrade existing packages (note: no --noconfirm)
|
||||||
@ -59,7 +59,7 @@ if command -v pacman &> /dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# openSUSE (zypper)
|
# openSUSE (zypper)
|
||||||
if command -v zypper &> /dev/null; then
|
if cat /etc/os-release | grep ID=opensuse &> /dev/null; then
|
||||||
echo "Installing packages for openSUSE (zypper)"
|
echo "Installing packages for openSUSE (zypper)"
|
||||||
|
|
||||||
sudo zypper -n install git python3 python3-devel python3-pip python3-setuptools gcc gcc-c++ glibc-devel make cross-mips-binutils zlib-devel libyaml-devel
|
sudo zypper -n install git python3 python3-devel python3-pip python3-setuptools gcc gcc-c++ glibc-devel make cross-mips-binutils zlib-devel libyaml-devel
|
||||||
@ -94,7 +94,7 @@ if command -v zypper &> /dev/null; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Alpine Linux (apk)
|
# Alpine Linux (apk)
|
||||||
if command -v apk &> /dev/null; then
|
if cat /etc/os-release | grep ID=alpine &> /dev/null; then
|
||||||
echo "Installing packages for Alpine Linux (apk)"
|
echo "Installing packages for Alpine Linux (apk)"
|
||||||
|
|
||||||
# If the edge/community repo isn't present, it needs to be for astyle
|
# If the edge/community repo isn't present, it needs to be for astyle
|
||||||
|
Loading…
Reference in New Issue
Block a user