cl-irc.asd
 1 ;;;; $Id: cl-irc.asd 245 2015-09-06 13:16:49Z ehuelsmann $
2 ;;;; $Source$
3
4 ;;;; See the LICENSE file for licensing information.
5
6 (in-package #:cl-user)
7
8 (defpackage #:cl-irc-system
9 (:use #:cl #:asdf))
10
11 (in-package #:cl-irc-system)
12
13 (defsystem cl-irc
14 :name "cl-irc"
15 :author "Erik Enge & Contributors"
16 :version "0.9.2"
17 :licence "MIT"
18 :description "Common Lisp interface to the IRC protocol"
19 :depends-on (:split-sequence :usocket :flexi-streams)
20 :properties ((#:author-email . "cl-irc-devel@common-lisp.net")
21 (#:date . "$Date: 2015-09-06 13:16:49 +0000 (Sun, 06 Sep 2015) $")
22 ((#:albert #:output-dir) . "doc/api-doc/")
23 ((#:albert #:formats) . ("docbook"))
24 ((#:albert #:docbook #:template) . "book")
25 ((#:albert #:docbook #:bgcolor) . "white")
26 ((#:albert #:docbook #:textcolor) . "black"))
27 :components ((:file "package")
28 (:file "variable"
29 :depends-on ("package"))
30 (:file "utility"
31 :depends-on ("variable"))
32 (:file "parse-message"
33 :depends-on ("utility"))
34 (:file "protocol"
35 :depends-on ("parse-message"))
36 (:file "command"
37 :depends-on ("protocol"))
38 (:file "event"
39 :depends-on ("command"))))