-
Notifications
You must be signed in to change notification settings - Fork 3
/
corona.asd
35 lines (34 loc) · 1.14 KB
/
corona.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
(in-package :cl-user)
(defpackage corona-asd
(:use :cl :asdf))
(in-package :corona-asd)
(defsystem corona
:author "Fernando Borretti <eudoxiahp@gmail.com>"
:maintainer "Fernando Borretti <eudoxiahp@gmail.com>"
:license "MIT"
:version "0.1"
:homepage "http://eudoxia.me/corona"
:bug-tracker "https://github.com/eudoxia0/corona/issues"
:source-control (:git "git@github.com:eudoxia0/corona.git")
:depends-on (:cl-virtualbox
:trivial-download
:trivial-types
:trivial-extract
:ironclad
:cl-fad
:log4cl
:anaphora)
:components ((:module "src"
:serial t
:components
((:file "files")
(:file "vagrant-cloud")
(:file "system")
(:file "system-list")
(:file "virtual-machines")
(:file "corona"))))
:description "Isolated, reproducible virtual development environments."
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op corona-test))))