86 lines
3.9 KiB
HTML
86 lines
3.9 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<!-- Created by GNU Texinfo 7.1, https://www.gnu.org/software/texinfo/ -->
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<!-- This manual documents Guile version 3.0.10.
|
||
|
|
||
|
Copyright (C) 1996-1997, 2000-2005, 2009-2023 Free Software Foundation,
|
||
|
Inc.
|
||
|
|
||
|
Copyright (C) 2021 Maxime Devos
|
||
|
|
||
|
Copyright (C) 2024 Tomas Volf
|
||
|
|
||
|
|
||
|
Permission is granted to copy, distribute and/or modify this document
|
||
|
under the terms of the GNU Free Documentation License, Version 1.3 or
|
||
|
any later version published by the Free Software Foundation; with no
|
||
|
Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
|
||
|
copy of the license is included in the section entitled "GNU Free
|
||
|
Documentation License." -->
|
||
|
<title>Distributing Guile Code (Guile Reference Manual)</title>
|
||
|
|
||
|
<meta name="description" content="Distributing Guile Code (Guile Reference Manual)">
|
||
|
<meta name="keywords" content="Distributing Guile Code (Guile Reference Manual)">
|
||
|
<meta name="resource-type" content="document">
|
||
|
<meta name="distribution" content="global">
|
||
|
<meta name="Generator" content=".texi2any-real">
|
||
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||
|
|
||
|
<link href="index.html" rel="start" title="Top">
|
||
|
<link href="Concept-Index.html" rel="index" title="Concept Index">
|
||
|
<link href="index.html#SEC_Contents" rel="contents" title="Table of Contents">
|
||
|
<link href="Programming-in-Scheme.html" rel="up" title="Programming in Scheme">
|
||
|
<link href="Installing-Site-Packages.html" rel="prev" title="Installing Site Packages">
|
||
|
<style type="text/css">
|
||
|
<!--
|
||
|
a.copiable-link {visibility: hidden; text-decoration: none; line-height: 0em}
|
||
|
span:hover a.copiable-link {visibility: visible}
|
||
|
-->
|
||
|
</style>
|
||
|
<link rel="stylesheet" type="text/css" href="https://www.gnu.org/software/gnulib/manual.css">
|
||
|
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body lang="en">
|
||
|
<div class="section-level-extent" id="Distributing-Guile-Code">
|
||
|
<div class="nav-panel">
|
||
|
<p>
|
||
|
Previous: <a href="Installing-Site-Packages.html" accesskey="p" rel="prev">Installing Site Packages</a>, Up: <a href="Programming-in-Scheme.html" accesskey="u" rel="up">Programming in Scheme</a> [<a href="index.html#SEC_Contents" title="Table of contents" rel="contents">Contents</a>][<a href="Concept-Index.html" title="Index" rel="index">Index</a>]</p>
|
||
|
</div>
|
||
|
<hr>
|
||
|
<h3 class="section" id="Distributing-Guile-Code-1"><span>4.8 Distributing Guile Code<a class="copiable-link" href="#Distributing-Guile-Code-1"> ¶</a></span></h3>
|
||
|
|
||
|
<a class="index-entry-id" id="index-distribution_002c-of-Guile-projects"></a>
|
||
|
<p>There’s a tool that doesn’t come bundled with Guile and yet can be very
|
||
|
useful in your day to day experience with it. This tool is
|
||
|
<a class="uref" href="https://gitlab.com/a-sassmannshausen/guile-hall">Hall</a>.
|
||
|
</p>
|
||
|
<p>Hall helps you create, manage, and package your Guile projects through a
|
||
|
simple command-line interface. When you start a new project, Hall
|
||
|
creates a folder containing a scaffold of your new project. It contains
|
||
|
a directory for your tests, for your libraries, for your scripts and for
|
||
|
your documentation. This means you immediately know where to put the
|
||
|
files you are hacking on.
|
||
|
</p>
|
||
|
<a class="index-entry-id" id="index-build-system_002c-for-Guile-code"></a>
|
||
|
<p>In addition, the scaffold will include your basic “Autotools” setup,
|
||
|
so you don’t have to take care of that yourself (see <a data-manual="autoconf" href="https://www.gnu.org/software/autoconf/manual/html_node/The-GNU-Build-System.html#The-GNU-Build-System">The GNU Build
|
||
|
System</a> in <cite class="cite">Autoconf: Creating Automatic Configuration Scripts</cite>,
|
||
|
for more information on the GNU “Autotools”). Having Autotools set up
|
||
|
with your project means you can immediately start hacking on your
|
||
|
project without worrying about whether your code will work on other
|
||
|
people’s computers. Hall can also generate package definitions for the
|
||
|
GNU Guix package manager, making it easy for Guix users to install
|
||
|
it.
|
||
|
</p>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
</body>
|
||
|
</html>
|