X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=cl-graph.asd;h=d0e14b5db5d37899d471dfc0a8cec8c80988b409;hb=529a8f60bae410ef4c1f90a2f3f4c1a44a66df5b;hp=9c21442f46ddcb98489aa9947692bdcca2423797;hpb=b2600b046616c7072574c6afe7c40cf0b260de7c;p=cl-graph.git diff --git a/cl-graph.asd b/cl-graph.asd index 9c21442..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 @@ -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")))))