xmpp-send/xmpp-send.asd

15 lines
426 B
Text
Raw Permalink Normal View History

2013-05-09 13:57:52 +02:00
(defpackage :xmpp-send-system
(:use :cl :asdf))
(in-package :xmpp-send-system)
(defsystem :xmpp-send
:name "XMPP Send"
:author "Tom Willemse <tom@ryuslash.org>"
:version "0.1.0"
:maintainer "Tom Willemsen <tom@ryuslash.org>"
:description "Send a quick message through XMPP."
:serial t
:depends-on (:cl-xmpp :cl-xmpp-tls)
:components ((:file "package")
(:file "xmpp-send")))