-
Notifications
You must be signed in to change notification settings - Fork 7
/
rigidus.asd
44 lines (44 loc) · 1.77 KB
/
rigidus.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
;; [[file:doc.org::*Файл определения системы][defsystem]]
;;;; Copyright © 2014-2017 Glukhov Mikhail. All rights reserved.
;;;; Licensed under the GNU AGPLv3
(asdf:defsystem #:rigidus
:version "0.0.3"
:author "rigidus <i.am.rigidus@gmail.com>"
:licence "AGPLv3"
:description "site http://rigidus.ru"
:depends-on (#:anaphora
#:closer-mop
#:cl-ppcre
#:cl-base64
#:cl-json
#:cl-html5-parser
#:cl-who
#:cl-fad
#:optima
#:closure-template
#:drakma
#:restas
#:restas-directory-publisher
#:split-sequence
#:postmodern
#:restas
#:optima
#:fare-quasiquote-extras
#:fare-quasiquote-optima)
:serial t
:components ((:module "src"
:serial t
:pathname "src"
:components ((:static-file "templates.htm")
(:file "prepare")
(:file "defmodule")
(:file "html")
(:file "ext-html")
(:file "orgmode")
(:file "render")
(:file "routes")
(:file "init")
(:static-file "daemon.conf")
(:static-file "daemon.lisp")
(:static-file "daemon.sh")))))
;; defsystem ends here