/usr/share/common-lisp/source/command-line-arguments/command-line-arguments.asd is in cl-command-line-arguments 20151218-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ;;; -*- mode: lisp -*-
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; ;;;
;;; Free Software available under an MIT-style license. See LICENSE ;;;
;;; ;;;
;;; Copyright (c) 2008 ITA Software, Inc. All rights reserved. ;;;
;;; ;;;
;;; Original authors: Francois-Rene Rideau ;;;
;;; ;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defsystem :command-line-arguments
:author ("Francois-Rene Rideau")
: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"
:version "1.0.2"
:depends-on (#-asdf3 :uiop)
:components
((:file "pkgdcl")
(:file "argv" :depends-on ("pkgdcl"))
(:file "parse" :depends-on ("pkgdcl"))
(:file "help" :depends-on ("pkgdcl"))))
|