From ef6f49deb41e9796446976d8e796247ffd6ccf93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arno=C5=A1t=20Dudek?= <44229208+dudekaa@users.noreply.github.com> Date: Sun, 19 Nov 2023 16:26:41 +0100 Subject: [PATCH] added (at least homebrewed) Fedora packages (as I'm no official Fedora Packager guy) P.S.: Happy 10th anniversary!!! --- Working-on-GNU-Linux.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/Working-on-GNU-Linux.md b/Working-on-GNU-Linux.md index 206d8cf..4acc809 100644 --- a/Working-on-GNU-Linux.md +++ b/Working-on-GNU-Linux.md @@ -145,6 +145,40 @@ zypper in raylib-devel [raysan5]: mailto:ray@raylib.com "Ramon Santamaria - Ray San" +### Fedora +Fedora hasn't `raylib` in the official repository, so at least I made a [COPR repository](https://copr.fedorainfracloud.org/coprs/nost23/raylib/). + +#### First enable [repo](https://copr.fedorainfracloud.org/coprs/nost23/raylib/) +It contains (both) packages: + +* `raylib-devel` - needed **only** for development, installs runtime library too +* `raylib` - runtime dependency for Fedora based systems + +To add the repo: +``` +#> dnf copr enable nost23/raylib +``` + +NOTE: current "spec file" can be found at: https://copr-dist-git.fedorainfracloud.org/cgit/nost23/raylib/raylib.git/tree/raylib.spec + +#### To install development files (for development) +Continue with: + +``` +#> dnf install raylib-devel +``` + +#### To install library only (for runtime) +Continue with: + +``` +#> dnf install raylib +``` + +**If you have any doubt, [just let me know][dudekaa].** + +[dudekaa]: mailto:arnost@arnostdudek.cz "nost23" + ### The simplest possible build command ```