cl-pcg.asd @ 9e2c59c4c13d

Add `:homepage` to `defsystem`
author Steve Losh <steve@stevelosh.com>
date Mon, 15 Jan 2018 15:50:53 -0500
parents 555f4470bf64
children 7e8b0e494c82
(asdf:defsystem :cl-pcg
  :description "A bare-bones Permuted Congruential Generator implementation in pure Common Lisp."
  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://sjl.bitbucket.io/cl-pcg/"

  :license "MIT"
  :version "1.0.0"

  :depends-on (#+sbcl :sb-rotate-byte)

  :in-order-to ((asdf:test-op (asdf:test-op :cl-pcg.test)))

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