-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrandi.asd
36 lines (35 loc) · 1.05 KB
/
brandi.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
(defsystem "brandi"
:version "0.1.0"
:author "Charanjit Singh"
:license "AGPL"
:depends-on ("serapeum"
"log4cl"
"str"
"yason"
"cl-dbi"
"cl-migratum"
"cl-migratum.provider.local-path"
"cl-migratum.driver.dbi"
"sxql"
"woo"
"clack"
"lack")
:components ((:module "src"
:serial nil
:components
((:file "package")
(:file "db")
(:file "services/github")
(:file "web"))))
:description "BrandI manages my online presence as if I was a brand."
:in-order-to ((test-op (test-op "brandi/tests"))))
(defsystem "brandi/tests"
:author "Charanjit Singh"
:license "AGPL"
:depends-on ("brandi"
"rove")
:components ((:module "tests"
:components
((:file "package"))))
:description "Test system for brandi"
:perform (test-op (op c) (symbol-call :rove :run c)))