conserve.asd @ 7b67fe4c902a

Update URLs and some other minor tweaks
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Dec 2019 15:35:28 -0500
parents 5a40b5b38fe3
children (none)
(asdf:defsystem :conserve
  :description "Yet Another CSV Library for Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://docs.stevelosh.com/conserve/"
  :license "MIT/X11"
  :version "0.0.1"

  :depends-on ()

  :in-order-to ((asdf:test-op (asdf:test-op :conserve/test)))

  :serial t
  :components ((:module "src" :serial t :components
                ((:file "package")
                 (:file "main")))))

(asdf:defsystem :conserve/test
  :description
  "Test suite for conserve."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"

  :depends-on (:conserve :1am :cl-csv :fare-csv)

  :serial t
  :components ((:module "test" :serial t :components
                ((:file "package.test")
                 (:file "tests"))))

  :perform (asdf:test-op (op system)
             (funcall (read-from-string "conserve/test:run-tests"))))