;;; -*- mode: lisp -*- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; ;;; ;;; Free Software available under an MIT-style license. See LICENSE ;;; ;;; ;;; ;;; Copyright (c) 2008-2009 ITA Software, Inc. All rights reserved. ;;; ;;; ;;; ;;; Original authors: Francois-Rene Rideau, Dan Weinreb ;;; ;;; ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (asdf:defsystem :command-line-arguments :author ("Francois-Rene Rideau" "Dan Weinreb") :maintainer "Francois-Rene Rideau" :licence "MIT" :description "small library to deal with command-line arguments" :long-description "A library to abstract away the parsing of Unix-style command-line arguments" :depends-on (:cl-launch) :components ((:file "pkgdcl") (:file "get-command-line-arguments" :depends-on ("pkgdcl")) (:file "parse-command-line-arguments" :depends-on ("get-command-line-arguments"))))