Added .boring file
[cl-graph.git] / cl-graph.asd
1 ;;; -*- Mode: Lisp; package: cl-user; Syntax: Common-lisp; Base: 10 -*-
2
3 (in-package #:common-lisp-user)
4 (defpackage #:cl-graph-system (:use #:cl #:asdf))
5 (in-package #:cl-graph-system)
6
7 (unless (find-system 'asdf-system-connections nil)
8   (warn "The CL-Graph system would enjoy having asdf-system-connections 
9 around. See 
10 http://www.cliki.net/asdf-system-connections for details and download
11 instructions."))
12 (when (find-system 'asdf-system-connections nil)
13   (operate 'load-op 'asdf-system-connections))
14
15 (defsystem cl-graph
16   :version "0.9.2"
17   :author "Gary Warren King <gwking@metabang.com>"
18   :maintainer "Gary Warren King <gwking@metabang.com>"
19   :licence "MIT Style License"
20   :description "Graph manipulation utilities for Common Lisp"
21   :components ((:static-file "COPYING")
22                (:module 
23                 "dev"
24                 :components 
25                 ((:file "package")
26                  (:file "api"
27                         :depends-on ("package"))
28                  (:file "macros"
29                         :depends-on ("package"))
30                  (:file "graph"
31                         :depends-on ("api" "macros"))
32                  (:file "graph-container"
33                         :depends-on ("graph"))
34                  (:file "graph-matrix"
35                         :depends-on ("graph"))
36                  (:file "graph-algorithms"
37                         :depends-on ("graph"))
38                                      
39                  (:static-file "notes.text")
40
41                  (:module "graphviz" :depends-on ("graph")
42                           :components ((:file "graphviz-support")))))
43                (:module 
44                 "website"
45                 :components 
46                 ((:module "source"
47                           :components ((:static-file "index.md"))))))
48   :in-order-to ((test-op (load-op :cl-graph-test)))
49   :perform (test-op :after (op c)
50                     (funcall
51                       (intern (symbol-name '#:run-tests) :lift)
52                       :config :generic))
53   :depends-on ((:version :metatilities-base "0.6.0")
54                :dynamic-classes
55                :cl-containers
56                :metabang-bind
57                ;:cl-mathstats
58                :moptilities
59                ))
60
61 (defmethod operation-done-p 
62            ((o test-op) (c (eql (find-system 'cl-graph))))
63   (values nil))
64
65 #+asdf-system-connections
66 (asdf:defsystem-connection cl-graph-and-cl-variates
67   :requires (cl-graph cl-variates)
68   :components ((:module 
69                 "dev"
70                 :components
71                 ((:file "graph-and-variates")
72                  (:file "graph-generation"
73                         :depends-on ("graph-and-variates"))))))
74
75 #+asdf-system-connections
76 (asdf:defsystem-connection cl-graph-and-cl-graphviz
77   :requires (cl-graph cl-graphviz)
78   :components ((:module 
79                 "dev"
80                 :components
81                 ((:module "graphviz"
82                           :components
83                           ((:file "graphviz-support-optional")))))))
84
85 #+asdf-system-connections
86 (asdf:defsystem-connection cl-graph-and-metacopy
87   :requires (cl-graph metacopy)
88   :components ((:module 
89                 "dev"
90                 :components ((:file "copying")))))
91
92 #+asdf-system-connections
93 (asdf:defsystem-connection cl-graph-and-cl-mathstats
94   :requires (cl-graph cl-mathstats)
95   :components ((:module 
96                 "dev"
97                 :components
98                 ((:file "graph-metrics")))))