Hi Everyone,

I am new to guile and using git the "manual way" so I apologize if there are any mistakes here. Attached is a patch that updates the download page to include Fedora instructions (there is a broken link to fedora with no instructions). I also added instructions for getting guile installed on OS X with homebrew.

Best,
Lev
From ad46e3a11d81942cdab0603aff4518ef193ff923 Mon Sep 17 00:00:00 2001
From: Lev Lazinskiy <l...@levlaz.org>
Date: Thu, 23 Jun 2016 23:46:05 -0400
Subject: [PATCH] Update Download page with Fedora and OS X

Add instructions for installing guile under Fedora using yum and OS X
using homebrew.
---
 website/apps/base/download-page.scm | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/website/apps/base/download-page.scm 
b/website/apps/base/download-page.scm
index e1d6c38..1abe5cb 100644
--- a/website/apps/base/download-page.scm
+++ b/website/apps/base/download-page.scm
@@ -53,7 +53,9 @@
          (ul
           (li (a (@ (href "#guix")) "Guix"))
           (li (a (@ (href "#debian")) "Debian"))
-          (li (a (@ (href "#fedora")) "Fedora"))))
+          (li (a (@ (href "#parabola")) "Parabola"))
+          (li (a (@ (href "#fedora")) "Fedora"))
+          (li (a (@ (href "#osx")) "OS X "))))
         (li (a (@ (href "#releases")) "Releases"))
         (li (a (@ (href "#repository")) "Repository"))
         (li (a (@ (href "#snapshots")) "Snapshots"))))
@@ -81,6 +83,18 @@
        (pre
         (@ (class "shell"))
         "pacman -S guile")
+       (h3 (@ (id "fedora")) "Fedora")
+       (P "If you use " (a (@ (href "https://getfedora.org/";)) "Fedora")
+          ", run the following command:")
+       (pre
+        (@ (class "shell"))
+        "yum install guile")
+       (h3 (@ (id "osx")) "OS X")
+       (P "If you use OS X with "(a (@ (href "http://brew.sh/";)) "Homebrew")
+          ", run the following command:")
+       (pre
+        (@ (class "shell"))
+        "brew install guile")
        (h2 (@ (id "releases")) "Releases")
        (P "The latest releases of Guile are available via anonymous FTP. "
           "The " (a (@ (href "http://www.gnu.org/software/software.html";))
-- 
2.8.1

Reply via email to