This file is indexed.

/usr/share/common-lisp/source/cluck/cluck.asd is in cl-cluck 0.1.3-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
14
15
16
17
18
19
20
21
22
23
24
25
26
27
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name:          cluck.asd
;;;; Purpose:       ASDF definition file for CLUCK
;;;; Programmer:    Kevin M. Rosenberg
;;;; Date Started:  March 2007
;;;;
;;;; $Id$
;;;;
;;;; *************************************************************************

(defpackage #:cluck-system (:use #:asdf #:cl))
(in-package #:cluck-system)

(defsystem cluck
  :name "cluck"
  :maintainer "Kevin M. Rosenberg"
  :licence "BSD"
  :description "Common Lisp uController Clock Calculator"
  :long-description "CLUCK provides functions to programming timers and selecting crystals for microcontrollers."
  :depends-on (kmrcl)
  :components ((:file "package")
               (:file "clock" :depends-on ("package"))
               (:file "dtmf" :depends-on ("package"))
               ))