-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcl-syslog.asd
34 lines (28 loc) · 1.18 KB
/
cl-syslog.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
;;;; $Id: cl-syslog.asd,v 1.4 2006/11/28 19:46:09 lnostdal Exp $
;;;; $Source: /project/cl-syslog/cvsroot/cl-syslog/cl-syslog.asd,v $
;;;; See the LICENSE file for licensing information.
(in-package #:cl-user)
(defpackage #:cl-syslog-system
(:use #:cl #:asdf)
(:documentation "Package to create the ASDF system for the cl-syslog
package"))
(in-package #:cl-syslog-system)
(defsystem cl-syslog
:name "cl-syslog"
:author "Erik Enge"
:version "0.1.0"
:licence "MIT"
:description "Common Lisp syslog interface"
:depends-on (:cffi)
:properties ((#:author-email . "[email protected]")
(#:date . "$Date: 2006/11/28 19:46:09 $")
((#:albert #:output-dir) . "doc/api-doc/")
((#:albert #:formats) . ("docbook"))
((#:albert #:docbook #:template) . "book")
((#:albert #:docbook #:bgcolor) . "white")
((#:albert #:docbook #:textcolor) . "black"))
:components ((:file "package")
(:file "variable"
:depends-on ("package"))
(:file "cl-syslog"
:depends-on ("variable"))))