-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstaple.asd
38 lines (37 loc) · 1.32 KB
/
staple.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
(asdf:defsystem staple
:version "2.0.0"
:license "zlib"
:author "Yukari Hafner <shinmera@tymoon.eu>"
:maintainer "Yukari Hafner <shinmera@tymoon.eu>"
:description "A tool to generate documentation about Lisp projects through an HTML template."
:homepage "https://Shinmera.github.io/staple/"
:bug-tracker "https://github.com/Shinmera/staple/issues"
:source-control (:git "https://github.com/Shinmera/staple.git")
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "xref")
(:file "transform")
(:file "code-format")
(:file "clip")
(:file "page")
(:file "project")
(:file "inference")
(:file "documentation"))
:depends-on (:staple-package-recording
:staple-code-parser
:babel
:clip
:cl-ppcre
:definitions
:pathname-utils
:language-codes
:documentation-utils))
(asdf:defsystem staple/standalone
:components ((:file "main"))
:depends-on (:staple :staple-markless :staple-markdown :staple-restructured-text)
:build-operation "program-op"
:build-pathname #+win32 "staple"
#+linux "staple.run"
#-(or win32 linux) "staple.o"
:entry-point "staple::main")