mirror of
https://github.com/dgibson/dtc.git
synced 2025-10-13 16:27:39 -04:00
Remove some unnecessary package dependencies. Also include testing of the 'ci' branch (so as to test in-progress changes to the CI configuration itself). Generated-by: Claude Code 1.0.65 (claude-sonnet-4@20250514) Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
32 lines
897 B
Bash
Executable file
32 lines
897 B
Bash
Executable file
#!/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 meson pkgconf python python-setuptools-scm swig
|
|
elif [ "$NAME" = "Alpine Linux" ]
|
|
then
|
|
apk add build-base bison flex git yaml yaml-dev python3-dev \
|
|
meson py3-setuptools_scm swig
|
|
elif [ "$NAME" = "Fedora Linux" ]
|
|
then
|
|
dnf install -y bison diffutils flex gcc git libyaml libyaml-devel \
|
|
make meson python3-devel python3-setuptools swig
|
|
elif [ "$NAME" = "Ubuntu" ]
|
|
then
|
|
apt update
|
|
apt install -yq build-essential bison flex git libyaml-dev pkg-config \
|
|
meson python3-dev python3-setuptools python3-setuptools-scm swig
|
|
else
|
|
echo "ERROR: OS name is not provided."
|
|
exit 1
|
|
fi
|