Version 0.5.3
[iolib.git] / net.smtp-client.asd
blob6266e0127773b67101e80b81696b0e3b481a2d11
1 ;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp -*-
3 (in-package :common-lisp-user)
5 (eval-when (:compile-toplevel :load-toplevel :execute)
6   (asdf:operate 'asdf:load-op :asdf-additions))
8 (defpackage #:net.smtp-client.system
9   (:use #:common-lisp #:asdf-additions))
11 (in-package #:net.smtp-client.system)
13 (asdf:defsystem :net.smtp-client
14   :description "SMTP client library."
15   :author "Jan Idzikowski"
16   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
17   :licence "LLGPL-2.1"
18   :depends-on (:iolib-posix
19                :net.sockets
20                :cl-base64)
21   :default-component-class muffled-source-file
22   :pathname (merge-pathnames (make-pathname :directory '(:relative "protocols" "smtp"))
23                              *load-truename*)
24   :serial t
25   :components
26   ((:file "pkgdcl")
27    (:file "attachments")
28    (:file "smtp")))