Fix VARSYMP for empty symbol names.
[fiveam.git] / fiveam.asd
index c8bd8a0..dac1fae 100644 (file)
@@ -2,6 +2,12 @@
 
 (defsystem :fiveam
   :author "Edward Marco Baringer <mb@bese.it>"
+  :version #.(with-open-file (f (merge-pathnames "version.lisp-expr"
+                                                 (or *compile-file-pathname*
+                                                     *load-truename*)))
+               (read f))
+  :description "A simple regression testing framework"
+  :license "BSD"
   :depends-on (:alexandria)
   :pathname "src/"
   :components ((:file "package")
@@ -21,6 +27,8 @@
 
 (defsystem :fiveam-test
   :author "Edward Marco Baringer <mb@bese.it>"
+  :description "FiveAM's own test suite"
+  :license "BSD"
   :depends-on (:fiveam)
   :pathname "t/"
   :components ((:file "suite")