hurd-streams.asd 924 B

1234567891011121314151617181920212223242526272829
  1. ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
  2. (defpackage #:hurd-streams-asd
  3. (:use :cl :asdf))
  4. (in-package :hurd-streams-asd)
  5. (defsystem hurd-streams
  6. :name "hurd-streams"
  7. :version "0.0.0"
  8. :maintainer "Flavio Cruz"
  9. :author "Flavio Cruz"
  10. :license "GPL v3.0"
  11. :description "File streams using Hurd IO ports."
  12. :depends-on (:cffi
  13. :hurd-common
  14. :mach
  15. :hurd
  16. :trivial-gray-streams)
  17. :components ((:module streams
  18. :components ((:file "package")
  19. (:file "stream"
  20. :depends-on ("package"))
  21. (:file "output"
  22. :depends-on ("stream"))
  23. (:file "input"
  24. :depends-on ("stream"))))))