/usr/share/common-lisp/source/curry-compose-reader-macros/curry-compose-reader-macros.asd is in cl-curry-compose-reader-macros 20141217-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 | (defsystem :curry-compose-reader-macros
:description
"reader macros for concise function partial application and composition"
:author "Eric Schulte <schulte.eric@gmail.com>"
:version "1.0.0"
:licence "GPL V3"
:depends-on (alexandria)
:components
((:file "package")
(:file "curry-compose-reader-macros" :depends-on ("package"))))
|