(defpackage :org.unknownlamer.acl.system
  (:use :common-lisp :asdf))

(in-package :org.unknownlamer.acl.system)

(defsystem "acl"
  :description "Access Control List Library"
  :author "Clinton Ebadi"
  :components ((:module :src
			:components
			((:file "acl-pkg")
			 (:file "acl")
			 (:file "tests"))
			:serial t)) ; todo: when deps stop being serial...
  :depends-on (:fiveam :cl-utilities))