git.fiddlerwoaroof.com
stream-provider.asd
ed0a12cf
 ;;;; stream-provider.asd
 (cl:defpackage :fwoar.sp-system
   (:use :cl :asdf))
 (in-package :fwoar.sp-system)
 
 (asdf:defsystem #:stream-provider
   :description "A class library for interacting with groups of related resources"
   :author "Edward Langley <el-streamprovider@elangley.org"
   :license "MIT"
d423f9ac
   :pathname #p"PROJECTS:stream-provider;"
ed0a12cf
   :in-order-to ((test-op (test-op "stream-provider.test")))
d423f9ac
   :depends-on (#:fwoar-lisputils
ed0a12cf
                #:alexandria
                #:serapeum
d423f9ac
 	             #:uiop
 	             #:flexi-streams
 	             #:vector-update-stream)
ed0a12cf
   :serial t
   :components ((:file "package")
                (:file "stream-provider")))
 
 (asdf:defsystem #:stream-provider.test
   :depends-on (#:stream-provider
d423f9ac
 	             #:should-test)
ed0a12cf
   :serial t
d423f9ac
   :pathname #p"PROJECTS:stream-provider;"
ed0a12cf
   :components ((:file "package")
d423f9ac
 	             (:file "tests"))
ed0a12cf
   :perform (asdf:test-op (o s)
d423f9ac
 		                     (let ((*package* (find-package :stream-provider.tests)))
 		                       (uiop:symbol-call :should-test
 					                                   :test-for-xunit
 					                                   *standard-output*))))
ed0a12cf
 
 (defpackage :fwoar.sp-user
   (:use cl)
   (:export #:define-package))