source: tags/0.9.1/cl-irc.asd

Last change on this file was 228, checked in by Erik Huelsmann, 12 years ago

Tag 0.9.1 since 0.9.0 is borked.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1;;;; $Id: cl-irc.asd 228 2012-09-23 16:20:09Z 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.1"
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: 2012-09-23 16:20:09 +0000 (Sun, 23 Sep 2012) $")
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"))))
Note: See TracBrowser for help on using the repository browser.