chancery.asd @ dc7093d4922e

Add `:homepage` to `defsystem`
author Steve Losh <steve@stevelosh.com>
date Mon, 15 Jan 2018 15:50:40 -0500
parents 25f05d94b336
children d0338a96e265
(asdf:defsystem :chancery
  :description "A library for procedurally generating text, inspired by Tracery."
  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://sjl.bitbucket.io/chancery/"

  :license "MIT/X11"
  :version "1.0.0"

  :depends-on (:named-readtables)

  :in-order-to ((asdf:test-op (asdf:test-op :chancery.test)))

  :serial t
  :components ((:module "vendor" :serial t
                :components ((:file "quickutils-package")
                             (:file "quickutils")))
               (:file "package")
               (:module "src" :serial t
                :components ((:file "readtable")
                             (:file "chancery")))))