-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-pslib.asd
42 lines (40 loc) · 1.27 KB
/
cl-pslib.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
36
37
38
39
40
41
42
;; This software is Copyright (c) cage
;; cage grants you the rights to distribute
;; and use this software as governed by the terms
;; of the Lisp Lesser GNU Public License
;; (http://opensource.franz.com/preamble.html),
;; known as the LLGPL
(asdf:defsystem #:cl-pslib
:author "cage <[email protected]>"
:description "A CFFI wrapper for the pslib library, a library for generating PostScript files."
:licence "LLGPL"
:maintainer "cage"
:bug-tracker "https://notabug.org/cage/cl-pslib/issues"
:version "0.0.3"
:depends-on (:alexandria
:cffi
:cl-colors2
:cl-ppcre-unicode)
:components ((:file "package")
(:file "conditions"
:depends-on ("package"))
(:file "cffi-interface"
:depends-on ("package"))
(:file "pslib"
:depends-on ("cffi-interface"
"package"))
(:file "constants"
:depends-on ("package"
"pslib"))
(:file "page-metrics"
:depends-on ("package"))
(:file "graphics-utils"
:depends-on ("package"))
(:file "cl-pslib"
:depends-on ("constants"
"conditions"
"page-metrics"
"graphics-utils"
"pslib"))
(:file "shapes"
:depends-on ("cl-pslib"))))