cl-netpbm.asd @ 9ddd1cab15a0

Update URLs
author Steve Losh <steve@stevelosh.com>
date Mon, 23 Dec 2019 15:26:57 -0500
parents db7fd8486570
children (none)
(asdf:defsystem :cl-netpbm
  :description
  "Common Lisp support for reading/writing the netpbm image formats (PPM, PGM, and PBM)."

  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://docs.stevelosh.com/cl-netpbm/"
  :license "MIT/X11"
  :version "1.0.0"

  :depends-on ()

  :in-order-to ((asdf:test-op (asdf:test-op :cl-netpbm/test)))

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

(asdf:defsystem :cl-netpbm/test
  :description "Test suite for cl-netpbm."
  :author "Steve Losh <steve@stevelosh.com>"
  :license "MIT/X11"

  :depends-on (:cl-netpbm :1am :external-program)

  :serial t
  :components ((:file "package.test")
               (:module "test"
                :serial t
                :components ((:file "tests"))))
  :perform (asdf:test-op (op system)
             (funcall (read-from-string "netpbm/test:run-tests"))))