/usr/share/common-lisp/source/sqlite/sqlite.asd is in cl-sqlite 20130615-2.
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 | (defsystem :sqlite
:name "sqlite"
:author "Kalyanov Dmitry <Kalyanov.Dmitry@gmail.com>"
:version "0.1.6"
:license "Public Domain"
:components ((:file "sqlite-ffi")
(:file "cache")
(:file "sqlite" :depends-on ("sqlite-ffi" "cache")))
:depends-on (:iterate :cffi)
:in-order-to ((test-op (load-op sqlite-tests))))
(defmethod perform ((o asdf:test-op) (c (eql (find-system :sqlite))))
(funcall (intern "RUN-ALL-TESTS" :sqlite-tests)))
|