-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhu.dwim.asdf.asd
21 lines (20 loc) · 1.02 KB
/
hu.dwim.asdf.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*-
;;;
;;; Copyright (c) 2009-2011 by the authors.
;;;
;;; See LICENCE for details.
(defsystem :hu.dwim.asdf
:description "Various ASDF extensions such as attached test and documentation system, explicit development support, etc."
:author ("Tamás Borbély <[email protected]>"
"Attila Lendvai <[email protected]>"
"Levente Mészáros <[email protected]>")
:license "BSD or Bugroff"
;; this dependency on asdf may be a source of headaches if a newer asdf is part of the registry
;; and due to this dependency it gets updated in the middle of a half loaded image... nevertheless, we depend on asdf.
:depends-on (:asdf
:uiop)
:components ((:module "source"
:components ((:file "duplicates" :depends-on ("package"))
(:file "package")
(:file "production" :depends-on ("duplicates"))
(:file "system" :depends-on ("production"))))))