;;;; -*- Mode: LISP -*- (in-package :asdf) (setf (logical-pathname-translations "util") `(("**;*.*" ,(make-pathname :directory (append (pathname-directory *load-pathname*) '(:wild-inferiors)) :name :wild :type :wild)))) (defsystem :util :name "misc utilities" :author "Alan Ruttenberg" :components ((:file "string") (:file "config") (:file "tests") (:file "geturl") (:file "purl") (:file "encapsulate") (:file "jss-condition") (:file "xmls-helpers") (:file "server")) :depends-on (xptest xmls)) ;;;; eof