-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-netpbm.asd
37 lines (29 loc) · 1.08 KB
/
cl-netpbm.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(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"))))