Last change
on this file was
246,
checked in by Erik Huelsmann, 9 years ago
|
- Since 0.9.2 is released, upgrade the dev version number.
|
-
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 246 2015-09-06 13:17:54Z 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.3-dev" |
---|
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:17:54 +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")))) |
---|
Note: See
TracBrowser
for help on using the repository browser.