-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
cl-migratum.asd
34 lines (33 loc) · 1.25 KB
/
cl-migratum.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
(defpackage :cl-migratum-system
(:use :cl :asdf))
(in-package :cl-migratum-system)
(defsystem "cl-migratum"
:name "cl-migratum"
:description "Database schema migration system for Common Lisp"
:version "0.6.0"
:author "Marin Atanasov Nikolov <[email protected]>"
:maintainer "Marin Atanasov Nikolov <[email protected]>"
:license "BSD 2-Clause"
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:homepage "https://github.com/dnaeon/cl-migratum"
:bug-tracker "https://github.com/dnaeon/cl-migratum"
:source-control "https://github.com/dnaeon/cl-migratum"
:long-name "cl-migratum"
:depends-on (:local-time
:cl-ascii-table
:cl-reexport
:uiop
:log4cl)
:components ((:module "util"
:pathname #P"src/"
:components ((:file "util")))
(:module "core"
:pathname #P"src/"
:depends-on ("util")
:components ((:file "core")))
(:module "client-package"
:pathname #P"src/"
:depends-on ("core" "util")
:components ((:file "package"))))
:in-order-to ((test-op (test-op "cl-migratum.test"))))