summaryrefslogtreecommitdiffstats
path: root/xmpp-send.asd
blob: 950727eba1231c0d2e9ce5f64f1d5de4ea83eec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
(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")))