cl-netpbm.asd @ 8f8345435007 default tip
Update array constructors to please new SBCL
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Tue, 23 Jul 2024 09:41:58 -0400 |
| parents | 9ddd1cab15a0 |
| 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"))))