;;;; fwoar-lisputils.asd (in-package :asdf-user) (asdf:defsystem :fwoar-lisputils :description "Some utilities common to other libraries I'm writing" :author "fiddlerwoaroof " :license "MIT" :depends-on (#:alexandria #:uiop) :serial t :components ((:module "patmatch" :components ((:file "package") (:file "patmatch" :depends-on ("package")))))) (defsystem :fwoar-lisputils/patmatch/test :description "" :author "Ed L " :license "MIT" :depends-on (:fwoar-lisputils/patmatch :parachute) :serial t :components ((:module "patmatch" :components ((:file "test"))))) (defsystem #:fwoar-lisputils/string-utils :description "A string splitter" :author "fiddlerwoaroof