From 58c60f173631167f6538fea5931f46027c5d50f2 Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Wed, 8 Mar 2023 16:05:43 +0100 Subject: [PATCH] README: document development dependencies for Fedora/Ubuntu Document what is required to get a test VM build done, for some new contributors the gettext dependency is not obvious to resolve. --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e61e1fd..5ea7479 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,19 @@ Scaffolding for a [Cockpit](https://cockpit-project.org/) module. +# Development dependencies + +On Debian/Ubuntu: + + $ sudo apt install gettext nodejs npm make + +On Fedora: + + $ sudo dnf install gettext nodejs npm make + + # Getting and building the source -Make sure you have `npm` available (usually from your distribution package). These commands check out the source and build it into the `dist/` directory: ```