forked from ceramic/ceramic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathceramic.asd
52 lines (52 loc) · 1.69 KB
/
ceramic.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
(defsystem ceramic
:author "Fernando Borretti <[email protected]>"
:maintainer "Fernando Borretti <[email protected]>"
:license "MIT"
:version "0.1"
:homepage "http://ceramic.github.io/"
:bug-tracker "https://github.com/ceramic/ceramic/issues"
:source-control (:git "[email protected]:ceramic/ceramic.git")
:depends-on (:trivial-download
:trivial-extract
:trivial-exe
:uiop
:archive
:zip
:jonathan
:cl-json
:external-program
:buildapp
:uuid
:cl-fad
:clack-handler-hunchentoot
#-(or win32 mswindows)
:osicat)
:components ((:module "src"
:serial t
:components
((:file "util")
(:file "error")
(:file "os")
(:file "file")
(:file "logging")
(:file "runtime")
(:file "resource")
(:module "electron"
:serial t
:components
((:file "tools")
(:static-file "main.js")
(:file "driver")))
(:file "setup")
#-quicklisp
(:file "ql-patch")
#+quicklisp
(:file "build")
#+quicklisp
(:file "bundler")
(:file "ceramic"))))
:description "Common Lisp web apps on the desktop"
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op ceramic-test))))