2 ;;; Copyright (c) 2007 Zachary Beane, All Rights Reserved
4 ;;; Redistribution and use in source and binary forms, with or without
5 ;;; modification, are permitted provided that the following conditions
8 ;;; * Redistributions of source code must retain the above copyright
9 ;;; notice, this list of conditions and the following disclaimer.
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.
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.
29 (asdf:defsystem #:salza2
30 :author "Zachary Beane <xach@xach.com>"
33 :description "Create compressed data in the ZLIB, DEFLATE, or GZIP
35 :depends-on ("trivial-gray-streams")
36 :in-order-to ((asdf:test-op (asdf:test-op "salza2/test")))
37 :components ((:file "package")
39 :depends-on ("package"))
41 :depends-on ("package"))
43 :depends-on ("package"
46 :depends-on ("package"
49 :depends-on ("checksum"
52 :depends-on ("checksum"
55 :depends-on ("package"
58 :depends-on ("package"
62 :depends-on ("package"
68 :depends-on ("package"))
70 :depends-on ("huffman"
73 :depends-on ("package"
80 :depends-on ("package"))
82 :depends-on ("package"
87 :depends-on ("package"
92 :depends-on ("package"
97 :depends-on ("package"))))
99 (asdf:defsystem #:salza2/test
100 :author "Zachary Beane <xach@xach.com>"
103 :description "Tests for Salza2 system"
104 :depends-on ("salza2" "parachute" "flexi-streams" "chipz")
105 :perform (asdf:test-op (op c)
109 (uiop:symbol-call :parachute :test :salza2-test)))
110 (error "Tests failed")))
112 :components ((:file "package")
113 (:file "stream" :depends-on ("package"))))