From 7a254570698ebea3be60d7b3a4a4d8349f50d569 Mon Sep 17 00:00:00 2001 From: Benjamin Porter Date: Sat, 31 Aug 2024 14:00:00 -0600 Subject: [PATCH] Add Fedora dependencies to build instructions Tested on fresh Fedora 40 - August 31, 2024 --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8900da8..f488c9e 100644 --- a/README.md +++ b/README.md @@ -6,15 +6,28 @@ This is an experimental port of Minetest to the web using emscripten/WebAssembly System Requirements ------------------- -This has only been tested on Ubuntu 20.04. -* Ubuntu: apt-get install -y build-essential cmake tclsh +You will need to install the following minimal dependencies depending on your operating system: + +**Fedora** + +```bash +dnf install -y git make cmake gcc patch zstd tcl perl-FindBin +``` + +**Ubuntu** + +```bash +apt-get install -y build-essential cmake tclsh +``` Building --------- - cd minetest-wasm - ./build_all.sh +```bash +cd minetest-wasm +./build_all.sh +``` Installation ------------