-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtaps.asd
executable file
·35 lines (32 loc) · 1.24 KB
/
taps.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
28
29
30
31
32
33
34
35
;;;; ***********************************************************************
;;;;
;;;; Name: taps.asd
;;;; Project: taps
;;;; Purpose: the system definitions for the taps system
;;;; Author: mikel evins
;;;; Copyright: 2015 by mikel evins
;;;;
;;;; ***********************************************************************
(in-package #:cl-user)
(asdf:defsystem #:taps
:description "A library of conveniences for using series"
:author "mikel evins <[email protected]>"
:license "Apache 2.0"
:serial t
:depends-on (:series :split-sequence :closer-mop)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "drop")
(:file "filter")
(:file "any")
(:file "contains")
(:file "take")
(:file "leave")
(:file "tap")
(:file "character")
(:file "stream")
(:file "file")
(:file "string")
(:file "hash")))))
;;; (asdf:load-system :taps)