/usr/share/common-lisp/source/trivial-utf-8/trivial-utf-8.asd is in cl-trivial-utf-8 20111001-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 :trivial-utf-8-system
(:use :common-lisp :asdf))
(in-package :trivial-utf-8-system)
(defsystem :trivial-utf-8
:components ((:file "trivial-utf-8")))
(defsystem :trivial-utf-8-tests
:depends-on (:trivial-utf-8)
:components ((:file "tests")))
|