Skip to content

Commit

Permalink
License added, README is now a bit more descriptive and the Hunchento…
Browse files Browse the repository at this point in the history
…ot has been added as a dependency.
  • Loading branch information
Christoph Finkensiep committed Apr 16, 2012
1 parent c0fe182 commit 5fdb50b
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
7 changes: 7 additions & 0 deletions LICENSE
@@ -0,0 +1,7 @@
Copyright (c) 2012 Christoph Finkensiep

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 3 additions & 1 deletion README
@@ -1 +1,3 @@
This is the stub README.txt for the "m-server" project.
mensa_server is a Common Lisp server for the Socialunch app (mensa_app).
It defines an ASDF named called "m-server".
For the interface definition see api.txt.
15 changes: 11 additions & 4 deletions m-server.asd
Expand Up @@ -2,9 +2,16 @@

(asdf:defsystem #:m-server
:serial t
:description "Describe m-server here"
:author "Your Name <your.name@example.com>"
:license "Specify license here"
:depends-on (#:hunchentoot)
:components ((:file "package")
(:file "m-server")))
(:file "m-server"))
:description "m-server is a CL server for the Socialunch app."
:author "Christoph Finkensiep <ch.finkensiep@freenet.de>"
:license "Copyright (c) 2012 Christoph Finkensiep
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.")

3 changes: 1 addition & 2 deletions package.lisp
@@ -1,5 +1,4 @@
;;;; package.lisp

(defpackage #:m-server
(:use #:cl))

(:use #:cl))

0 comments on commit 5fdb50b

Please sign in to comment.