-
Notifications
You must be signed in to change notification settings - Fork 5
/
nfiles.asd
36 lines (34 loc) · 1.24 KB
/
nfiles.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
;;;; SPDX-FileCopyrightText: Atlas Engineer LLC
;;;; SPDX-License-Identifier: BSD-3-Clause
(defsystem "nfiles"
:version "1.1.4"
:description "Manage file persistence and loading."
:author "Atlas Engineer LLC"
:homepage "https://github.com/atlas-engineer/nfiles"
:bug-tracker "https://github.com/atlas-engineer/nfiles/issues"
:source-control (:git "https://github.com/atlas-engineer/nfiles.git")
:license "BSD 3-Clause"
:depends-on (alexandria
#-(and sbcl (not android))
iolib/os
nclasses
quri
serapeum
trivial-garbage
trivial-package-local-nicknames
trivial-types)
:components ((:file "pathname-helpers")
(:file "package")
(:file "conditions")
(:file "gpg")
(:file "nfiles"))
:in-order-to ((test-op (test-op "nfiles/tests"))))
(defsystem "nfiles/tests"
:depends-on ("nfiles" "lisp-unit2")
:pathname "tests/"
:components ((:file "tests"))
:perform (test-op (op c)
(eval-input
"(lisp-unit2:run-tests
:package :nfiles/tests
:run-contexts #'lisp-unit2:with-summary-context)")))