You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
931 B
33 lines
931 B
![]()
2 years ago
|
#!/bin/sh
|
||
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
if [ -f /etc/os-release ]
|
||
|
then
|
||
|
. /etc/os-release
|
||
|
else
|
||
|
echo "ERROR: OS name is not provided."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ "$NAME" = "Arch Linux" ]
|
||
|
then
|
||
|
pacman -Syu --needed --noconfirm bison diffutils flex gcc git libyaml \
|
||
|
make pkgconf python python-setuptools-scm swig valgrind which
|
||
|
elif [ "$NAME" = "Alpine Linux" ]
|
||
|
then
|
||
|
apk add build-base bison coreutils flex git yaml yaml-dev python3-dev \
|
||
|
py3-setuptools_scm swig valgrind
|
||
|
elif [ "$NAME" = "Fedora Linux" ]
|
||
|
then
|
||
|
dnf install -y bison diffutils flex gcc git libyaml libyaml-devel \
|
||
|
make python3-devel python3-setuptools swig valgrind which
|
||
|
elif [ "$NAME" = "Ubuntu" ]
|
||
|
then
|
||
|
apt update
|
||
|
apt install -yq build-essential bison flex git libyaml-dev pkg-config \
|
||
|
python3-dev python3-setuptools python3-setuptools-scm swig valgrind
|
||
|
else
|
||
|
echo "ERROR: OS name is not provided."
|
||
|
exit 1
|
||
|
fi
|