/usr/share/common-lisp/source/s-sql/s-sql.asd is in cl-s-sql 20151031-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 | (defpackage :s-sql-system
(:use :common-lisp :asdf))
(in-package :s-sql-system)
(defsystem :s-sql
:depends-on (:cl-postgres)
:components
((:module :s-sql
:components ((:file "s-sql")))))
|