Lisp
From Ggl's wiki
Environment
I use SBCL compiler environment:
$ aptitude install sbcl
I install the debian package common-lisp-controller which will install the dep cl-asdf (Another System Definition Facility), which is basically packaging system for lisp programs; and provides asdf-install:
$ aptitude install common-lisp-controller
I create a ~/.sbclrc with the following content:
(require 'asdf) (require 'asdf-install) (push #p"/home/ggl/.sblc/src/cl-weblocks/" asdf:*central-registry*)
Libraries should be installed later with (asdf-install:install :<library>) or the system provided by the developers (often darcs too).

