forked from thephoeron/let-over-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlet-over-lambda.asd
More file actions
28 lines (22 loc) · 941 Bytes
/
let-over-lambda.asd
File metadata and controls
28 lines (22 loc) · 941 Bytes
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
28
;;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: LET-OVER-LAMBDA; Base: 10 -*- file: let-over-lambda.asd
(in-package :cl-user)
(defpackage let-over-lambda-asd
(:use :cl :asdf)
(:export #:*lol-version*))
(in-package :let-over-lambda-asd)
(defparameter *lol-version* "1.0.1"
"A string denoting the current version of LET-OVER-LAMBDA. Used for diagnostic output.")
(defsystem #:let-over-lambda
:serial t
:description "The Production version code from letoverlambda.com, conveniently wrapped in an ASDF System for Quicklisp."
:version #.*lol-version*
:author "Doug Hoyte <doug@hoytech.com>"
:maintainer "\"the Phoeron\" Colin J.E. Lupton <sysop@thephoeron.com>"
:license "BSD Simplified"
:depends-on (#:alexandria
#:cl-ppcre
#:named-readtables)
:components ((:file "package")
(:file "let-over-lambda"))
:in-order-to ((test-op (test-op let-over-lambda-test))))
;; EOF