1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops" xmlns:m="http://www.w3.org/1998/Math/MathML" xmlns:pls="http://www.w3.org/2005/01/pronunciation-lexicon" xmlns:ssml="http://www.w3.org/2001/10/synthesis" xmlns:svg="http://www.w3.org/2000/svg">
- <head>
- <title>Getting Kawa</title>
- <link rel="stylesheet" type="text/css" href="docbook-epub.css"/>
- <link rel="stylesheet" type="text/css" href="kawa.css"/>
- <script src="kawa-ebook.js" type="text/javascript"/>
- <meta name="generator" content="DocBook XSL-NS Stylesheets V1.79.1"/>
- <link rel="prev" href="Installation.xhtml" title="Getting and installing Kawa"/>
- <link rel="next" href="Running-Java.xhtml" title="Getting and running Java"/>
- </head>
- <body>
- <header/>
- <section class="sect1" title="Getting Kawa" epub:type="subchapter" id="Getting-Kawa">
- <div class="titlepage">
- <div>
- <div>
- <h2 class="title" style="clear: both">Getting Kawa</h2>
- </div>
- </div>
- </div>
- <p>You can compile Kawa from the source distribution.
- Alternatively, you can install the pre-compiled binary distribution.
- </p>
- <p>You can get Kawa sources and binaries from the Kawa ftp site
- <a class="ulink" href="ftp://ftp.gnu.org/pub/gnu/kawa/" target="_top">ftp://ftp.gnu.org/pub/gnu/kawa/</a>,
- or from a <a class="ulink" href="http://www.gnu.org/order/ftp.html" target="_top">mirror site</a>.
- </p>
- <p>The current release of the Kawa source code is
- <a class="ulink" href="ftp://ftp.gnu.org/pub/gnu/kawa/kawa-2.92_invoke.tar.gz" target="_top">ftp://ftp.gnu.org/pub/gnu/kawa/kawa-2.92_invoke.tar.gz</a>.
- (To unpack <code class="literal">.tar.gz</code> files Windows users can use
- <a class="ulink" href="http://www.7-zip.org/" target="_top">7-Zip</a>, which is Free Software.)
- </p>
- <p>The corresponding pre-compiled release
- is <a class="ulink" href="ftp://ftp.gnu.org/pub/gnu/kawa/kawa-2.92_invoke.zip" target="_top">ftp://ftp.gnu.org/pub/gnu/kawa/kawa-2.92_invoke.zip</a>.
- The most recent snapshot is
- <a class="ulink" href="ftp://ftp.gnu.org/pub/gnu/kawa/kawa-latest.zip" target="_top">ftp://ftp.gnu.org/pub/gnu/kawa/kawa-latest.zip</a>.
- Instructions for using either are <a class="link" href="Binary-distribution.xhtml" title="Installing and using the binary distribution">here</a>.
- </p>
- <section class="sect2" title="Getting the development sources using Git" epub:type="division" id="idm139667880870656">
- <div class="titlepage">
- <div>
- <div>
- <h3 class="title">Getting the development sources using Git</h3>
- </div>
- </div>
- </div>
- <p>The Kawa sources are managed using a
- <a class="ulink" href="https://gitlab.com/kashell/Kawa" target="_top">git</a> repository.
- If you want the very latest version grab
- <a class="ulink" href="https://git-scm.com/downloads" target="_top">a git client</a>,
- and then check out the source using this command:
- </p>
- <pre class="screen">git clone https://gitlab.com/kashell/Kawa.git
- </pre>
- <p>After a checkout you will need to run:
- </p>
- <pre class="screen">./autogen.sh
- </pre>
- <p>before proceding with instructions for <a class="link" href="Source-distribution.xhtml" title="Installing and using the source distribution">building the source distribution</a>.
- </p>
- <p>Once you have it checked out, you can keep it up-to-date with <code class="literal">git pull</code>.
- </p>
- <p>You can also
- <a class="ulink" href="https://gitlab.com/kashell/Kawa/tree/master" target="_top">browse the git archive</a> online.
- </p>
- </section>
- </section>
- <footer>
- <div class="navfooter">
- <ul>
- <li>
- <b class="toc">
- <a href="Getting-Kawa.xhtml#idm139667880870656">Getting the development sources using Git</a>
- </b>
- </li>
- </ul>
- <p>
- Up: <a accesskey="u" href="Installation.xhtml">Getting and installing Kawa</a></p>
- <p>
- Next: <a accesskey="n" href="Running-Java.xhtml">Getting and running Java</a></p>
- </div>
- </footer>
- </body>
- </html>
|