/usr/share/common-lisp/source/ieee-floats/ieee-floats.asd is in cl-ieee-floats 20140713-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 | (defpackage :ieee-floats-system
(:use :common-lisp :asdf))
(in-package :ieee-floats-system)
(defsystem :ieee-floats
:components ((:file "ieee-floats")))
(defsystem :ieee-floats-tests
:depends-on (:ieee-floats :eos)
:components ((:file "tests")))
|