forked from fukamachi/mito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmito.asd
29 lines (28 loc) · 1.07 KB
/
mito.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
(in-package :cl-user)
(defpackage mito-asd
(:use :cl :asdf))
(in-package :mito-asd)
(defsystem mito
:version "0.1"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:mito-core
:mito-migration
:cl-reexport)
:components ((:file "src/mito"))
:description "Abstraction layer for DB schema"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input
:element-type #+lispworks :default #-lispworks 'character
:external-format #+clisp charset:utf-8 #-clisp :utf-8)
(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 mito-test))))