;;; Name: ghost-trinity.asd (defpackage #:ghost-trinity-system (:use #:asdf #:cl)) (in-package :ghost-trinity-system) (asdf:defsystem :ghost-trinity :name "ghost-trinity" :author "Berlin Brown" :version "0.1" :maintainer "Berlin Brown " :licence "BSD" :description "Ghost Trinity Web Front End" :long-description "Ghost Trinity Web Front End" :depends-on (:hunchentoot :cl-who :html-template :clsql :clsql-mysql :sb-bsd-sockets) :components ((:file "packages") (:file "trinity" :depends-on ("packages")) )) ;;; End of File