-
Notifications
You must be signed in to change notification settings - Fork 7
/
literate-lisp.asd
35 lines (33 loc) · 1.24 KB
/
literate-lisp.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
;;; -*- encoding:utf-8 Mode: LISP; Syntax: COMMON-LISP; Base: 10 -*- ---
;;
;; Filename: literate-lisp.asd
;; Description: package definition of literate-lisp.
;; Author: Jingtao Xu <[email protected]>
;; Created: 2018.02.02 19:34:18(+0800)
;; Last-Updated: 2021.10.11 14:48:08(+0800)
;; Update #: 79
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;;
(eval-when (:compile-toplevel :load-toplevel :execute)
(unless (find-package :literate-lisp.system)
(defpackage :literate-lisp.system
(:use :cl :asdf))))
(in-package :literate-lisp.system)
(asdf:defsystem literate-lisp
:author "Xu Jingtao <[email protected]>"
:licence "MIT"
:version "0.6"
:serial t
:description "a literate programming tool to write common lisp codes in org file."
:depends-on (#:cl-ppcre #:iterate #:cl-fad #+test #:fiveam)
:components ((:module basics :pathname "./lisp/"
:components ((:file "package")
(:file "parser")
(:file "new-syntax")
(:file "tangle")
(:file "asdf")
#+test(:file "test"))
:serial t)))