forked from endatabas/endb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendb.asd
28 lines (28 loc) · 942 Bytes
/
endb.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
(defsystem "endb"
:version "0.1.0"
:author "Håkan Råberg <[email protected]>, Steven Deobald <[email protected]>"
:license "AGPL-3.0-only"
:description "Endatabas is a SQL document database with full history."
:homepage "https://www.endatabas.com/"
:source-control "https://github.com/endatabas/endb"
:class :package-inferred-system
:depends-on ("endb/core"
"alexandria"
"archive"
"bordeaux-threads"
"cffi"
"cl-ppcre"
"com.inuoe.jzon"
"flexi-streams"
"float-features"
"fset"
"local-time"
"periods"
"trivial-backtrace"
"trivial-utf-8"
"trivia")
:pathname "src"
:build-operation program-op
:build-pathname "../target/endb"
:entry-point "endb/core:main"
:in-order-to ((test-op (test-op "endb-test"))))