-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitio.asd
25 lines (23 loc) · 930 Bytes
/
bitio.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
;; Copyright 2010 Peter K. Keller ([email protected])
;;
;; Licensed under MIT License found in the LICENSE file.
(asdf:defsystem #:bitio
:description "A wrapper for octet streams that enable bit level streams."
:version "0.1"
:author "Peter Keller <[email protected]>"
:license "MIT License"
:serial t
:depends-on (#:fast-io
#:trivial-gray-streams
#:cl-package-locks
#:checkl)
:components ((:module "base"
:pathname ""
:components ((:file "package")
(:file "utils")
(:file "bitio")
(:file "bitio-read")
(:file "tests")))
(:module "contrib"
:components ((:file "gray")
(:file "gray-test")))))