forked from kmizumar/named-readtables
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathnamed-readtables.asd
35 lines (31 loc) · 1.23 KB
/
named-readtables.asd
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
29
30
31
32
33
34
35
;;;; -*- mode: Lisp -*-
(in-package :asdf)
(defclass named-readtables-source-file (cl-source-file) ())
#+sbcl
(defmethod perform :around ((o compile-op)
(c named-readtables-source-file))
(let ((sb-ext:*derive-function-types* t))
(call-next-method)))
;;; See NAMED-READTABLES::@NAMED-READTABLES-MANUAL for the user guide.
(defsystem "named-readtables"
:description "Library that creates a namespace for readtables akin
to the namespace of packages."
:author "Tobias C. Rittweiler <trittweiler@common-lisp.net>"
:maintainer "Gábor Melis <mega@retes.hu>"
:mailto "mega@retes.hu"
:homepage "http://melisgl.github.io/named-readtables"
:bug-tracker "https://github.com/melisgl/named-readtables/issues"
:source-control (:git "https://github.com/melisgl/named-readtables.git")
:version "0.9"
:licence "BSD, see LICENSE"
:depends-on ("mgl-pax-bootstrap")
:default-component-class named-readtables-source-file
:pathname "src"
:serial t
:components ((:file "package")
(:file "utils")
(:file "define-api")
(:file "cruft")
(:file "named-readtables")
(:file "doc"))
:in-order-to ((test-op (test-op "named-readtables-test"))))