Update docs for release wrangling.
[salza2.git] / salza2.asd
blobf7b33a4e4acfaa2b02969c46059fcd76f2ce0076
1 ;;;
2 ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved
3 ;;;
4 ;;; Redistribution and use in source and binary forms, with or without
5 ;;; modification, are permitted provided that the following conditions
6 ;;; are met:
7 ;;;
8 ;;;   * Redistributions of source code must retain the above copyright
9 ;;;     notice, this list of conditions and the following disclaimer.
10 ;;;
11 ;;;   * Redistributions in binary form must reproduce the above
12 ;;;     copyright notice, this list of conditions and the following
13 ;;;     disclaimer in the documentation and/or other materials
14 ;;;     provided with the distribution.
15 ;;;
16 ;;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED
17 ;;; OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 ;;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 ;;; ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 ;;; DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 ;;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
22 ;;; GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 ;;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ;;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 ;;; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 ;;; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 ;;;
29 (asdf:defsystem #:salza2
30   :version "2.0.7"
31   :description "Create compressed data in the ZLIB, DEFLATE, or GZIP
32   data formats"
33   :components ((:file "package")
34                (:file "reset"
35                       :depends-on ("package"))
36                (:file "specials"
37                       :depends-on ("package"))
38                (:file "types"
39                       :depends-on ("package"
40                                    "specials"))
41                (:file "checksum"
42                       :depends-on ("package"
43                                    "reset"))
44                (:file "adler32"
45                       :depends-on ("checksum"
46                                    "types"))
47                (:file "crc32"
48                       :depends-on ("checksum"
49                                    "types"))
50                (:file "chains"
51                       :depends-on ("package"
52                                    "specials"))
53                (:file "bitstream"
54                       :depends-on ("package"
55                                    "specials"
56                                    "reset"))
57                (:file "matches"
58                       :depends-on ("package"
59                                    "types"))
60                (:file "compress"
61                       :depends-on ("types"
62                                    "matches"))
63                (:file "huffman"
64                       :depends-on ("package"))
65                (:file "closures"
66                       :depends-on ("huffman"
67                                    "bitstream"))
68                (:file "compressor"
69                       :depends-on ("package"
70                                    "closures"
71                                    "utilities"
72                                    "specials"
73                                    "bitstream"
74                                    "reset"))
75                (:file "utilities"
76                       :depends-on ("package"))
77                (:file "zlib"
78                       :depends-on ("package"
79                                    "adler32"
80                                    "reset"
81                                    "compressor"))
82                (:file "gzip"
83                       :depends-on ("package"
84                                    "crc32"
85                                    "reset"
86                                    "compressor"))
87                (:file "user"
88                       :depends-on ("package"
89                                    "compressor"
90                                    "zlib"
91                                    "gzip"))))