This repository was archived by the owner on Jul 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathquickdocs-database.asd
More file actions
47 lines (44 loc) · 1.54 KB
/
quickdocs-database.asd
File metadata and controls
47 lines (44 loc) · 1.54 KB
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
#|
This file is a part of quickdocs-database project.
Copyright (c) 2015 Eitaro Fukamachi (e.arrows@gmail.com)
|#
#|
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#
(in-package :cl-user)
(defpackage quickdocs-database-asd
(:use :cl :asdf))
(in-package :quickdocs-database-asd)
(defsystem quickdocs-database
:version "0.1"
:author "Eitaro Fukamachi"
:license "BSD 2-Clause"
:depends-on (:quickdocs-serializer
:datafly
:function-cache
:sxql
:babel
:cl-syntax-annot
:cl-reexport)
:components ((:module "src"
:components
((:file "quickdocs-database" :depends-on ("model" "preference"))
(:module "model"
:depends-on ("preference")
:components
((:file "project" :depends-on ("system"))
(:file "system")))
(:file "preference"))))
:description "Quickdocs database accessor collections"
: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))))