-
Notifications
You must be signed in to change notification settings - Fork 1
/
hurd-streams.asd
28 lines (24 loc) · 924 Bytes
/
hurd-streams.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
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defpackage #:hurd-streams-asd
(:use :cl :asdf))
(in-package :hurd-streams-asd)
(defsystem hurd-streams
:name "hurd-streams"
:version "0.0.0"
:maintainer "Flavio Cruz"
:author "Flavio Cruz"
:license "GPL v3.0"
:description "File streams using Hurd IO ports."
:depends-on (:cffi
:hurd-common
:mach
:hurd
:trivial-gray-streams)
:components ((:module streams
:components ((:file "package")
(:file "stream"
:depends-on ("package"))
(:file "output"
:depends-on ("stream"))
(:file "input"
:depends-on ("stream"))))))