-
Notifications
You must be signed in to change notification settings - Fork 33
/
weblocks-util.asd
57 lines (55 loc) · 1.59 KB
/
weblocks-util.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
53
54
55
56
57
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defpackage #:weblocks-util-asd
(:use :cl :asdf))
(in-package :weblocks-util-asd)
(defsystem weblocks-util
:name "weblocks-util"
:version "0.1.1"
:maintainer "Olexiy Zamkoviy, Scott L. Burson"
:author "Slava Akhmechet"
:licence "LLGPL"
:description "Utilities for weblocks"
:depends-on (:closer-mop
:hunchentoot
:puri
:cl-json
:cl-who
:parenscript
:cl-fad
:optima
:cl-cont
:metatilities
:cl-ppcre
:anaphora
:f-underscore
:bordeaux-threads
:salza2
:html-template
:trivial-timeout
:trivial-backtrace
:parse-number
:pretty-function
:ironclad)
:components
((:module src
:components (
(:file "util")
(:module utils
:components
((:file "misc")
(:file "clos")
;(:file "runtime-class")
;(:file "string")
(:file "list")
;(:file "uri")
;(:file "html")
;(:file "javascript")
;(:file "isearch" :depends-on ("html"))
;(:file "menu" :depends-on ("html"))
;(:file "suggest")
;(:file "timing")
;(:file "repl")
(:file "i18n")
(:file "templates" :depends-on ("html-parts"))
(:file "html-parts"))
:depends-on ("util"))))))