adopt.asd @ 34d2ad201c73

Add groups, restructure and simplify API
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Apr 2019 06:17:49 -0400
parents 845fc8785d54
children bc8760190ed7 1a81296fb3ec
(asdf:defsystem :adopt
  :description "Simple, flexible, UNIX-style option parsing."
  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://sjl.bitbucket.io/adopt/"

  :license "MIT"
  :version "0.0.1"

  :depends-on (:bobbin :split-sequence)

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

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


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

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

  :depends-on (:adopt :1am :losh)

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

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