-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhistory-tree.asd
30 lines (28 loc) · 1 KB
/
history-tree.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
;;;; SPDX-FileCopyrightText: Atlas Engineer LLC
;;;; SPDX-License-Identifier: BSD-3-Clause
(defsystem "history-tree"
:version "0.1.2"
:description "Store the history of a browser's visited paths."
:author "Atlas Engineer LLC"
:homepage "https://github.com/atlas-engineer/history-tree"
:license "BSD 3-Clause"
:depends-on (alexandria
cl-custom-hash-table
local-time
nclasses
trivial-package-local-nicknames)
:serial t
:components ((:file "package")
(:file "history-tree"))
:in-order-to ((test-op (test-op "history-tree/tests"))))
(defsystem "history-tree/tests"
:depends-on ("history-tree" "lisp-unit2")
:serial t
:pathname "tests/"
:components ((:file "package")
(:file "tests"))
:perform (test-op (op c)
(eval-input
"(lisp-unit2:run-tests
:package :history-tree/tests
:run-contexts #'lisp-unit2:with-summary-context)")))