From e86ad95cd690896975eb9302dc854e576a990708 Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Tue, 13 Nov 2018 13:38:32 -0500 Subject: [PATCH] fedora: Add bootstrap script Since Fedora by default does not include all the dependencies required to run the Makefile, we install them first. --- .fedora/bootstrap.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 .fedora/bootstrap.sh diff --git a/.fedora/bootstrap.sh b/.fedora/bootstrap.sh new file mode 100755 index 00000000..2e78aa8e --- /dev/null +++ b/.fedora/bootstrap.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +# End the script on any errors +set -e + +# Change the working directory to this one +cd "$(dirname "$0")" + +# Install dependencies +sudo dnf install -y make fedpkg + +# Run make +make