Automated commit for upstream build of version 0.9.1.1
[cl-rss.git] / rss.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          rss.asd
6 ;;;; Purpose:       ASDF definition file for Rss
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2003
9 ;;;;
10 ;;;; *************************************************************************
11
12 (defpackage #:rss-system (:use #:asdf #:cl))
13 (in-package #:rss-system)
14
15 #+allegro (require 'aserve)
16
17 (defsystem rss
18   :name "rss"
19   :author "Kevin Rosenberg based on work by Craig Brozensky"
20   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
21   :licence "BSD"
22   :description "Remote Site Summary"
23   :version "0.9.1.1"
24
25   :properties ((#:author-email . "kevin@rosenberg.net")
26                ((#:albert #:output-dir) . "albert-docs/")
27                ((#:albert #:formats) . ("docbook"))
28                ((#:albert #:docbook #:template) . "book")
29                ((#:albert #:docbook #:bgcolor) . "white")
30                ((#:albert #:docbook #:textcolor) . "black"))
31
32   :serial t
33   :depends-on (kmrcl xmls #-allegro aserve)
34   :components
35   ((:file "package")
36    (:file "main")))