;; -*- Hen -*- ((egg "cgi.egg") ; This should never change ; List here all the files that should be bundled as part of your egg. (files "cgi.setup" "cgi.meta" "environment.scm" "protocol.scm") ; Your egg's license: (license "GPL-3") ; Pick one from the list of categories (see below) for your egg and ; enter it here. (category parsing) ; A list of eggs cgi depends on. (needs typeclass input-classes (abnf 6.1) datatype byte-blob utf8 matchable) (test-depends test) (author "Ivan Raikov") (synopsis "An implementation of the CGI protocol as described in RFC 3875.") )