Browse Source

Initial commit

Samuel W. Flint 8 years ago
commit
d2ecf06f4d
5 changed files with 42 additions and 0 deletions
  1. 10 0
      .gitignore
  2. 1 0
      README.txt
  3. 20 0
      meeting-minds.asd
  4. 6 0
      meeting-minds.lisp
  5. 5 0
      package.lisp

+ 10 - 0
.gitignore

@@ -0,0 +1,10 @@
+.*
+!.gitignore
+*.aux
+*.bcf
+*.log
+*.out
+*.run.xml
+auto/*
+*~
+\#*\#

+ 1 - 0
README.txt

@@ -0,0 +1 @@
+This is the stub README.txt for the "meeting-minds" project.

+ 20 - 0
meeting-minds.asd

@@ -0,0 +1,20 @@
+;;;; meeting-minds.asd
+
+(asdf:defsystem #:meeting-minds
+  :description "Describe meeting-minds here"
+  :author "Samuel W. Flint <swflint@flintfam.org>"
+  :license "GNU GPLv3 or Later"
+  :depends-on (#:ningle
+               #:clack-errors
+               #:clsql
+               #:stefil
+               #:ironclad
+               #:babel
+               #:uiop
+               #:cl-mustache
+               #:birch
+               #:irc-logger)
+  :serial t
+  :components ((:file "package")
+               (:file "meeting-minds")))
+

+ 6 - 0
meeting-minds.lisp

@@ -0,0 +1,6 @@
+;;;; meeting-minds.lisp
+
+(in-package #:meeting-minds)
+
+;;; "meeting-minds" goes here. Hacks and glory await!
+

+ 5 - 0
package.lisp

@@ -0,0 +1,5 @@
+;;;; package.lisp
+
+(defpackage #:meeting-minds
+  (:use #:cl))
+