source: tags/cl-irc_upstream_version_0_5/cl-irc.asd

Last change on this file was 2, checked in by Erik Enge, 20 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1;;;; $Id: cl-irc.asd 2 2004-01-05 14:13:03Z eenge $
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"
16    :version "0.1.0"
17    :licence "MIT"
18    :description "Common Lisp interface to the IRC protocol"
19    :depends-on
20      #+sbcl (:sb-bsd-sockets :split-sequence)
21      #-sbcl (:split-sequence)
22    :depends-on (:split-sequence)
23    :properties ((#:author-email . "cl-irc-devel@common-lisp.net")
24                 (#:date . "$Date: 2004-01-05 14:13:03 +0000 (Mon, 05 Jan 2004) $")
25                 ((#:albert #:output-dir) . "doc/api-doc/")
26                 ((#:albert #:formats) . ("docbook"))
27                 ((#:albert #:docbook #:template) . "book")
28                 ((#:albert #:docbook #:bgcolor) . "white")
29                 ((#:albert #:docbook #:textcolor) . "black"))
30    :components ((:file "package")
31                 (:file "variable"
32                        :depends-on ("package"))
33                 (:file "utility"
34                        :depends-on ("variable"))
35                 (:file "parse-message"
36                        :depends-on ("utility"))
37                 (:file "protocol"
38                        :depends-on ("parse-message"))
39                 (:file "command"
40                        :depends-on ("protocol"))
41                 (:file "event"
42                        :depends-on ("command"))))
Note: See TracBrowser for help on using the repository browser.