Started CLHS-like docs.
[iolib.git] / net.smtp-client.asd
blob7c82b603e25c3b2f37bcfddfe7f15c9f92a1ceed
1 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Indent-tabs-mode: NIL -*-
3 (in-package :common-lisp-user)
5 (asdf:defsystem :net.smtp-client
6   :description "SMTP client library."
7   :author "Jan Idzikowski"
8   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
9   :licence "LLGPL-2.1"
10   :depends-on (:alexandria :osicat :net.sockets :cl-base64)
11   :pathname (merge-pathnames (make-pathname :directory '(:relative "protocols" "smtp"))
12                              *load-truename*)
13   :serial t
14   :components
15   ((:file "pkgdcl")
16    (:file "client-net")
17    (:file "client-commands")
18    (:file "client-authentication")
19    (:file "attachments")
20    (:file "smtp")))