From 1c34fb14f446175318cc1d6f8f34d47c999fc7fb Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Thu, 18 Jun 2020 14:22:24 -0600 Subject: [PATCH] scripts: Add deps for Fedora/CentOS --- scripts/deps.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/scripts/deps.sh b/scripts/deps.sh index f3b5274..cc68c99 100755 --- a/scripts/deps.sh +++ b/scripts/deps.sh @@ -15,6 +15,8 @@ then build-essential \ bison \ ccache \ + curl \ + dosfstools \ flex \ git-lfs \ gnat \ @@ -25,6 +27,21 @@ then sdcc \ uuid-dev \ zlib1g-dev +elif which dnf > /dev/null +then + msg "Installing system build dependencies" + sudo dnf group install c-development + sudo dnf install \ + curl \ + dosfstools \ + gcc-gnat \ + git-lfs \ + libuuid-devel \ + mtools \ + nasm \ + patch \ + sdcc \ + zlib-devel else msg "Please add support for your distribution to:" msg "scripts/deps.sh"