-
Notifications
You must be signed in to change notification settings - Fork 0
/
image-ops.asd
65 lines (52 loc) · 1.78 KB
/
image-ops.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; -*- mode: lisp -*-
;;; :FILE image-ops/image-ops.asd
;;; ==============================
;; ,----
;; | "I am sick to death of knee-jerk anti-LOOPism and I am beginning to
;; | irrationally regard it as a plot to disable me as a programmer by
;; | excommunicating my useful tools."
;; |
;; | :SOURCE "Knee-jerk Anti-LOOPism and other E-mail Phenomena" p 17
;; `---- :SEE http://ccs.mit.edu/papers/CCSWP150.html
(defpackage #:image-ops-build-system (:use :common-lisp :asdf))
(in-package #:image-ops-build-system)
(defvar *author-maintainer-contact* (format nil "MON KEY -- ~A"
(map 'string
'code-char
#(109 111 110 107 101 121 64 115 97 110 100 112
102 114 97 109 105 110 103 46 99 111 109))))
(defsystem :image-ops
;; :name ""
:author "MON KEY"
:maintainer #.*author-maintainer-contact*
:license "MIT"
:description "image operations agglomerated"
:version "1.0.0"
:depends-on (:mon
:local-time
:tiff4cl
;; :zpng
;; :png-read
;; :image-ops-jpeg
)
:serial t
:components
((:file "package")
(:file "image-ops-specials")
(:file "image-ops-macros")
;; (:file "image-ops-png") ; requires zpng and png-read
(:file "image-ops-copy")
(:file "image-ops-rotate")
(:file "image-ops-hash-dir-tree")
(:file "image-ops-iphone")
(:file "image-ops-nikon-nef")
(:file "image-ops-copy-misc")
(:file "image-ops-docs")
#+IS-MON (:file "image-ops-loadtime-bind")
))
;;; ==============================
;; Local Variables:
;; indent-tabs-mode: nil
;; show-trailing-whitespace: t
;;; ==============================
;;; EOF