-
Notifications
You must be signed in to change notification settings - Fork 9
/
unix-options.asd
23 lines (19 loc) · 1003 Bytes
/
unix-options.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
;;; unix-options (C) 2009-2010 Andrew Stine
;;; This software is distributed under the terms of the Lisp Lesser GNU
;;; Public License (http://opensource.franz.com/preamble.html), also
;;; known as the LLGPL.
;;; 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.
;;; ----------------------------------------------------------------------
(asdf:defsystem #:unix-options
:version "0.3.1"
:serial t
:description "Easy to use command line option parser"
:author "Andrew Stine [email protected]"
:license "LLGPL"
:components ((:file "unix-options")))