(defpackage :ucw-forms.system
  (:use :asdf :cl))

(in-package :ucw-forms.system)

(defsystem :ucw-forms
  :description "UnCommon Web: Forms Library"
  :long-description "A very basic form handling library for UCW. This
  was formerly part of UCW, but is no longer included in
  ucw-standard."
  :author "Marco Baringer <mb@bese.it>"
  :maintainer "Clinton Ebadi <clinton@unknownlamer.org>"
  :licence "BSD (sans advertising clause)"
  :components ((:module :src
			:components ((:file "package")
				     (:file "tags")
				     (:file "form")
				     (:file "simple-form"))
			:serial t))
  :depends-on (:ucw :cl-ppcre :arnesi :yaclml :rfc2388-binary :closer-mop))