Deliver each contrib as a single FASL. Don't implicitly require ASDF or source code...
[sbcl.git] / contrib / sb-cover / sb-cover.asd
1 ;;; -*-  Lisp -*-
2
3 (defsystem sb-cover
4   #+sb-building-contrib :pathname
5   #+sb-building-contrib #p"SYS:CONTRIB;SB-COVER;"
6   :depends-on (sb-md5)
7   :components ((:file "cover"))
8   :perform (load-op :after (o c) (provide 'sb-cover))
9   :perform (test-op :after (o c) (test-system 'sb-cover/tests)))
10
11 (defsystem sb-cover/tests
12   #+sb-building-contrib :pathname
13   #+sb-building-contrib #p"SYS:CONTRIB;SB-COVER;"
14   :depends-on (sb-cover asdf)
15   :components ((:file "tests")))
16