Last change
on this file since 13308 was
13308,
checked in by Mark Evenson, 11 years ago
|
Implementation of a utility to package ASDF systems in jars.
The recursive dependencies are just recorded, not packaged.
|
File size:
327 bytes
|
Line | |
---|
1 | (defun init-test () |
---|
2 | (require :quicklisp) |
---|
3 | (ql:quickload :cl-ppcre)) |
---|
4 | |
---|
5 | (defun package-test () |
---|
6 | (package :cl-ppcre)) |
---|
7 | |
---|
8 | (defun load-test () |
---|
9 | (push "jar:file:/var/tmp/cl-ppcre.jar!/cl-ppcre-2.0.3/" |
---|
10 | asdf:*central-registry*) |
---|
11 | (asdf:disable-output-translations) |
---|
12 | (setf asdf::*verbose-out* t) |
---|
13 | (asdf:load-system :cl-ppcre)) |
---|
14 | |
---|
Note: See
TracBrowser
for help on using the repository browser.