The library is stashed in a git repository, which can be browsed .
Use the following links to fetch and push changes.
NEW comes with a .system and a
.asd file.
mk:defsystemTo install with mk:defsystem, you can just unpack the
new-op directory in a place that is already registered
with mk:add-directory-location. Otherwise you can
mk:add-directory-location the
/path/to/dir-with/new-op directory (or even
/path/to/dir-with/; the latest version of
mk:defsystem knows how to deal with it.) Then you just do
cl-prompt> (mk:compile-system "NEW-OP")or
cl-prompt> (require "NEW-OP")and you are in business.
To install with ASDF, you need to do the usual symlink business and then just do
cl-prompt> (asdf:oos 'asdf:load-op :new-op)or
cl-prompt> (require :new-op)and you are in business.