source: trunk/abcl/contrib/README.markdown @ 14057

Last change on this file since 14057 was 14057, checked in by Mark Evenson, 11 years ago

abcl-contrib: Flesh out the toplevel README.

File size: 1.7 KB
Line 
1ABCL-CONTRIB
2============
3
4The contributions to Armed Bear constitute Common Lisp only code that
5is potentially useful for system construction and distribution.
6
7
8abcl-asdf
9
10    ABCL specific extensions to ASDF, including resolution of binary
11    JVM artifacts cached from the network according to Maven metadata
12    with the derived transitive relationships.
13   
14
15asdf-jar
16
17    Package ASDF system definitions into JVM artifacts for distribution
18   
19
20jss
21   
22    A higher-order, more Lisp oriented interface for constructing Lisp
23    interfaces to existing binary code libraries available for the JVM
24    built on the primitives provided by the JAVA package.
25   
26jfli
27
28    The "original" higher-order JVM interop descended from Rich
29    Hickey's work on the JVM before Clojure.  This implementation
30    currently uses a fork of the public [JFLI][] API that uses the
31    java interop of the ABCL JAVA package instead of the JNI
32    interface. 
33   
34[jfli]: http://sourceforge.net/projects/jfli/
35   
36   
37mvn
38---
39   
40A collection of various useful JVM artifacts downloaded and cached
41by the Aether Maven connector.  Requires the maven-3.0.4 executable
42"mvn" (or "mvn.bat') to be in the current processes's path.
43   
44jna     
45    Cache, from the network if necessary, the jna-3.0.9.jar in
46    the current JVM process, allowing the bootstrapping of
47    dynamically linking to shared executables on the host platform.
48
49
50Deprecated
51----------
52
53asdf-install
54   
55    Install ASDF system definitions from the network. 
56   
57    Deprecated, use Quicklisp from the REPL via
58   
59        CL-USER> (load "http://beta.quicklisp.org/quicklisp.lisp")
60       
61    instead.
62
63# Colophon
64
65Mark <evenson.not.org@gmail.com>
66Created:  2011-09-11
67Revised:  2012-08-04
68
69
Note: See TracBrowser for help on using the repository browser.