-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdiff.asd
More file actions
20 lines (18 loc) · 736 Bytes
/
diff.asd
File metadata and controls
20 lines (18 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; diff.asd - the ASDF system definition for diff -*- lisp -*-
(cl:defpackage #:diff-system
(:use :cl))
(cl:in-package #:diff-system)
(asdf:defsystem :diff
:version "0.4"
:author "Nathan Froyd <froydnj@gmail.com>"
:maintainer "Nathan Froyd <froydnj@gmail.com>"
:depends-on (:cl-ppcre :trivial-gray-streams)
:components ((:file "package")
(:file "diff" :depends-on ("package"))
(:file "patch" :depends-on ("diff"))
(:file "vdelta" :depends-on ("package"))
(:file "svndiff" :depends-on ("package" "vdelta"))
(:static-file "README")
(:static-file "TODO")
(:static-file "NEWS")
(:static-file "LICENSE")))