X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph.asd;h=d0e14b5db5d37899d471dfc0a8cec8c80988b409;hb=3e6caf777362fbe61b76b305e9b4aa1e80a60bc4;hp=9fe25307ff27adf67a76fa3f75cd1eec7953df51;hpb=b621ac7a68fbf0d4ee562c4b2eeb7b6d707efa81;p=cl-graph.git diff --git a/cl-graph.asd b/cl-graph.asd index 9fe2530..d0e14b5 100644 --- a/cl-graph.asd +++ b/cl-graph.asd @@ -5,13 +5,13 @@ |# (in-package :common-lisp-user) -(defpackage "ASDF-CL-GRAPH" (:use #:cl #:asdf)) -(in-package "ASDF-CL-GRAPH") +(defpackage #:asdf-cl-graph (:use #:cl #:asdf)) +(in-package #:asdf-cl-graph) (unless (find-system 'asdf-system-connections nil) (when (find-package 'asdf-install) (print "Trying to install asdf-system-connections with ASDF-Install...") - (funcall (intern "INSTALL" "ASDF-INSTALL") 'asdf-system-connections))) + (funcall (intern (symbol-name :install) :asdf-install) 'asdf-system-connections))) ;; give up with a useful (?) error message (unless (find-system 'asdf-system-connections nil) (error "The CL-Graph system requires ASDF-SYSTEM-CONNECTIONS. See @@ -33,7 +33,7 @@ instructions.")) (:file "macros" :depends-on ("package")) (:file "graph" - :depends-on ("api")) + :depends-on ("api" "macros")) (:file "graph-container" :depends-on ("graph")) (:file "graph-matrix" @@ -74,3 +74,8 @@ instructions.")) ((:module "graphviz" :components ((:file "graphviz-support-optional"))))))) + +(asdf:defsystem-connection cl-graph-and-metacopy + :requires (cl-graph metacopy) + :components ((:module "dev" + :components ((:file "copying")))))