;; -*- mode: scheme; coding: utf-8 -*- ;;;; Copyright (C) 2003 - 2015 ;;;; Free Software Foundation, Inc. ;;;; This file is part of Guile-Gnome. ;;;; Guile-Gnome is free software: you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published ;;;; by the Free Software Foundation, either version 3 of the License, ;;;; or (at your option) any later version. ;;;; Guile-Gnome is distributed in the hope that it will be useful, but ;;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;;; General Public License for more details. ;;;; You should have received a copy of the GNU General Public License ;;;; along with Guile-Gnome. If not, see ;;;; . ;;;; ;;; Commentary: ;;; Code: (use-modules (template) (globals)) (include "dependencies-p.scm") (include "notes-p.scm") (define page `((h2 "Dependencies") ,%dependencies-p (h2 "Quickstart") (p "The latest release is " ,(%gg-latest-a) " , with its " ,(%gg-latest-sig-a #:name "GPG binary signature") ". Other releases are available " ,(%gg-other-rel-a #:name "here") ".") (b (@ (class "pre")) "Special note") (p (@ (class "pre")) "As I'm updating Guile-Gnome's web pages for this release, I still have a pending authorization request to upload the release files. So, in the mean time, I uploaded them under " ,(%grip-savannah-a #:name "Grip's") " dowload area, which explains the download url refers to grip instead of guile-gnome ...") (p "Once all [or the appropriate subset of the GNOME core libraries you wish to wrap] dependencies are statisfied, open a terminal and:") (ul (@ (class "code")) (li "cd ") (li "tar zxf guile-gnome-platform-.tar.gz") (li "cd guile-gnome-platform-") (li "./configure [--prefix=/your/prefix]") (li "make") (li "make install")) ,%notes-p)) (define (make-index) (output-html page "Guile-Gnome" "Download" "" #:scm-path "download.scm"))