-
Notifications
You must be signed in to change notification settings - Fork 0
/
wild-package-inferred-system.asd
30 lines (27 loc) · 1.17 KB
/
wild-package-inferred-system.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
;; -*- mode: lisp -*-
#-ASDF3.3
(error "wild-package-inferred-system requires ASDF 3.3 or later. The version of your ASDF is ~A."
(asdf:asdf-version))
(defsystem "wild-package-inferred-system"
:version "0.2.0"
:author "Hugo I."
:license "MIT"
:components ((:module "src"
:components ((:file "package")
(:file "internal-utilities")
(:file "main"))))
:description "Introduces the wildcards `*' and `**' into package-inferred-system"
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op "wild-package-inferred-system/test"))))
(defsystem "wild-package-inferred-system/test"
:depends-on ("wild-package-inferred-system" "fiveam")
:components ((:module "test"
:components ((:file "package")
(:file "internal")
(:file "parse-namestring")
(:file "system"))))
:description "Test system for wild-package-inferred-system"
:perform (test-op (o c)
(eval-input "(fiveam:run! :wild-package-inferred-system-suite)")))