-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrivial-package-locks.asd
32 lines (31 loc) · 1.12 KB
/
trivial-package-locks.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
(asdf:defsystem #:trivial-package-locks
:description "A standard interface to the various package lock implementations."
:author "Tarn W. Burton"
:license "MIT"
:version "0.1"
:homepage "https://github.com/yitzchak/trivial-package-locks"
:bug-tracker "https://github.com/yitzchak/trivial-package-locks/issues"
:in-order-to ((asdf:test-op (asdf:test-op #:trivial-package-locks/test)))
:components
((:module code
:serial t
:components
((:file "packages")
(:file "locks")))))
(asdf:defsystem #:trivial-package-locks/test
:description "Test suite for trivial-package-locks"
:author "Tarn W. Burton"
:license "MIT"
:version "0.1"
:homepage "https://github.com/yitzchak/trivial-package-locks"
:bug-tracker "https://github.com/yitzchak/trivial-package-locks/issues"
:depends-on (#:parachute #:trivial-package-locks)
:perform (asdf:test-op (op c) (uiop:symbol-call :parachute :test :trivial-package-locks/test))
:components
((:module code
:components
((:module test
:serial t
:components
((:file "packages")
(:file "locks")))))))