source:
tags/mode_tracking/cl-irc.asd
Last change on this file was 27, checked in by , 21 years ago | |
---|---|
|
|
File size: 1.4 KB |
Line | |
---|---|
1 | ;;;; $Id: cl-irc.asd 27 2004-03-29 19:07:55Z krosenberg $ |
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.5.2" |
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-03-29 19:07:55 +0000 (Mon, 29 Mar 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.