Last change
on this file was
110,
checked in by lisppaste, 19 years ago
|
For bmastenbrook: Steel Bazooka Common Lisp!
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.0 KB
|
Line | |
---|
1 | ;;;; $Id: cliki-bot.asd 110 2005-10-13 18:22:38Z lisppaste $ |
---|
2 | ;;;; $Source$ |
---|
3 | |
---|
4 | ;;;; See the LICENSE file for licensing information. |
---|
5 | |
---|
6 | (in-package #:cl-user) |
---|
7 | |
---|
8 | (defpackage #:cliki-bot-system |
---|
9 | (:use #:cl #:asdf)) |
---|
10 | |
---|
11 | (in-package #:cliki-bot-system) |
---|
12 | |
---|
13 | (defsystem cliki-bot |
---|
14 | :name "cliki-bot" |
---|
15 | :author "Brian Mastenbrook" |
---|
16 | :version "0.1.0" |
---|
17 | :licence "MIT" |
---|
18 | :description "IRC bot for SBCL" |
---|
19 | :depends-on |
---|
20 | (:cl-irc :cl-ppcre :split-sequence :trivial-http) |
---|
21 | :properties ((#:author-email . "cl-irc-devel@common-lisp.net") |
---|
22 | (#:date . "$Date: 2005-10-13 18:22:38 +0000 (Thu, 13 Oct 2005) $") |
---|
23 | ((#:albert #:output-dir) . "doc/api-doc/") |
---|
24 | ((#:albert #:formats) . ("docbook")) |
---|
25 | ((#:albert #:docbook #:template) . "book") |
---|
26 | ((#:albert #:docbook #:bgcolor) . "white") |
---|
27 | ((#:albert #:docbook #:textcolor) . "black")) |
---|
28 | :components ((:file "mp2eliza") |
---|
29 | (:file "eliza-rules" |
---|
30 | :depends-on ("mp2eliza")) |
---|
31 | (:file "steel-bazooka") |
---|
32 | (:file "cliki" |
---|
33 | :depends-on ("mp2eliza" "steel-bazooka")))) |
---|
Note: See
TracBrowser
for help on using the repository browser.