adding all of botlist, initial add
[botlist.git] / botlist_trinity / misc / lisp / trinity / botlist-trinity.asd
blobd67f6e464fc8b816bbb8a9ab774c710e4a88b74c
1 ;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;; ********************************************************
3 ;;; FILE IDENTIFICATION
4 ;;;
5 ;;; Name:          botlist-trinity.asd
6 ;;; Purpose:       ASDF definition file for botlist trinity project
7 ;;; Author:        Berlin Brown
8 ;;; Date Started:  Feb 2008
9 ;;;
10 ;;; ********************************************************
12 (defpackage #:botlist-trinity-system (:use #:asdf #:cl))
14 (in-package :botlist-trinity-system)
16 (asdf:defsystem :botlist-trinity
17                                 :name "botlist-trinity"
18                                 :author "Berlin Brown"
19                                 :version "0.1"
20                                 :maintainer "Berlin Brown <berlin.brown@gmail.com>"
21                                 :licence "BSD"
22                                 :description "Botlist Trinity Web Front End" 
23                                 :long-description "Botlist Trinity Web Front End" 
24                                 
25                                 :depends-on (:hunchentoot
26                                                          :cl-who
27                                                          :html-template)
28                                                          
29                                 :components ((:file "packages")
30                                                          (:file "trinity")))
32 ;;; End of File