-
Notifications
You must be signed in to change notification settings - Fork 0
/
hw.asd
24 lines (21 loc) · 923 Bytes
/
hw.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(asdf:defsystem "hw"
;; system attributes:
:description "Hello World"
:long-description "
This program prints \"Hello World!\" on the standard output.
"
:author "Pascal J. Bourguignon <[email protected]>"
:maintainer "Pascal J. Bourguignon <[email protected]>"
:licence "AGPL3"
;; component attributes:
:version "1.0.0"
:properties ((#:author-email . "[email protected]")
(#:date . "Winter 2016")
((#:albert #:output-dir) . "../documentation/hw/")
((#:albert #:formats) . ("docbook"))
((#:albert #:docbook #:template) . "book")
((#:albert #:docbook #:bgcolor) . "white")
((#:albert #:docbook #:textcolor) . "black"))
:depends-on ()
:components ((:file "hw" :depends-on ()))
#+asdf-unicode :encoding #+asdf-unicode :utf-8)