-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
myway.asd
46 lines (42 loc) · 1.42 KB
/
myway.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
#|
This file is a part of myway project.
Copyright (c) 2014 Eitaro Fukamachi (e.arrows@gmail.com)
|#
#|
Sinatra-compatible routing library.
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#
(in-package :cl-user)
(defpackage myway-asd
(:use :cl :asdf))
(in-package :myway-asd)
(defsystem myway
:version "0.1.0"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:cl-ppcre
:quri
:map-set
:alexandria
:cl-utilities)
:components ((:module "src"
:components
((:file "myway" :depends-on ("route" "mapper" "util"))
(:file "rule")
(:file "route" :depends-on ("rule"))
(:file "mapper" :depends-on ("route" "util"))
(:file "util"))))
:description "Sinatra-compatible routing library."
: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 (test-op myway-test))))