Fixed text nodes in PT builder
[closure-html.git] / doc / installation.xml
blob64858b9b34f28023c5d95be4126f55bb24af8390
1 <page title="Installing Closure HTML">
3   <h3>Download</h3>
4   <p>
5     Download a
6     <a href="http://common-lisp.net/project/closure/download/">tarball</a>.
7   </p>
8   <p>
9     Or get it from git://repo.or.cz/closure-html.git
10     (<a href="http://repo.or.cz/w/closure-html.git">gitweb</a>)
11   </p>
13   <h3>Installation</h3>
14   <p>
15     Closure HTML needs
16     <a href="http://www.cliki.net/closure-common">closure-common</a>
17     and <a href="http://weitz.de/flexi-streams/">flexi-streams</a>.
18   </p>
19   <p>
20     <a href="http://www.cliki.net/asdf">ASDF</a> is used for
21     compilation.  Register the .asd file, e.g. by symlinking it, then
22     compile cxml-stp using <tt>asdf:operate</tt>.
23   </p>
24   <pre>$ ln -sf `pwd`/closure-html.asd /path/to/your/registry/
25 * (asdf:operate 'asdf:load-op :closure-html)</pre>
27 </page>