-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdiff-match-patch.asd
More file actions
44 lines (40 loc) · 1.29 KB
/
diff-match-patch.asd
File metadata and controls
44 lines (40 loc) · 1.29 KB
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
36
37
38
39
40
41
42
43
44
;;;; -*- lisp -*-
(defpackage #:dmp-system
(:use #:cl #:asdf #:uiop/package))
(in-package #:dmp-system)
(defsystem #:diff-match-patch
:name "Diff/Match/Patch"
:description "A Common Lisp port of Neil Fraser's library of the same name"
:version "0.2.1"
:author "Neil Fraser; ported by Boris Smilga"
:maintainer "Boris Smilga <boris.smilga@gmail.com>"
:license "Apache 2.0"
:depends-on (#:iterate #:cl-ppcre)
:components
((:module #:src
:serial t
:pathname ""
:components
((:file "package")
(:file "lib")
(:file "diff")
(:file "cleanup")
(:file "match")
(:file "patch"))))
:in-order-to ((test-op (load-op #:diff-match-patch/test))))
(defsystem #:diff-match-patch/test
:name "Diff/Match/Patch tests"
:version "0.2.1"
:author "Neil Fraser; ported by Boris Smilga"
:maintainer "Boris Smilga <boris.smilga@gmail.com>"
:license "Apache 2.0"
:depends-on (#:diff-match-patch #:fiveam
(:version #:cl-interpol "0.2.6"))
:components
((:module #:src
:serial t
:pathname ""
:components ((:file "test")))))
(defmethod perform ((op test-op)
(system (eql (find-system '#:diff-match-patch))))
(funcall (find-symbol* '#:run-all '#:dmp-test)))