forked from fukamachi/ningle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ningle.asd
43 lines (39 loc) · 1.37 KB
/
ningle.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
#|
This file is a part of ningle project.
Copyright (c) 2012 Eitarow Fukamachi ([email protected])
|#
#|
Super micro framework for Common Lisp.
Author: Eitarow Fukamachi ([email protected])
|#
(in-package :cl-user)
(defpackage ningle-asd
(:use :cl :asdf))
(in-package :ningle-asd)
(defsystem ningle
:version "0.1-SNAPSHOT"
:author "Eitarow Fukamachi"
:license "LLGPL"
:depends-on (:clack
:cl-syntax
:cl-syntax-annot)
:components ((:module "src"
:components
((:file "ningle" :depends-on ("app"))
(:file "app" :depends-on ("middleware/context"))
(:file "context")
(:file "middleware/context" :depends-on ("context")))))
:description "Super micro framework for Common Lisp."
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (load-op ningle-test))))