/usr/share/common-lisp/systems/memcache.asd is in cl-memstore 1.1.0-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 11 12 13 14 15 16 17 18 19 20 21 22 | ;;; -*- Mode: Common-Lisp -*-
;
;;; Copyright (c) 2005-2006, quasi. All rights reserved. Cleartrip.
;;; Copyright (c) 2011 Kevin Rosenberg. All rights reserved.
(in-package #:cl-user)
(defpackage #:memcache-system
(:use #:cl #:asdf))
(in-package #:memcache-system)
(defsystem #:memcache
:version "0.5.0"
:author "Kevin Rosenberg <kevin@rosenberg.net>, quasi <quasi@cleartrip.com>"
:depends-on (usocket kmrcl)
:components ((:module memcache
:serial t
:components
((:file "package")
(:file "specials")
(:file "util")
(:file "compat")
(:file "memcache")))))
|