License changed to Lisp Lesser GNU Public License.
[cl-zmq.git] / zeromq.asd
blobaabc0e1c95659a655249bdbdb01db723ac0f4aaa
1 ;; Copyright (c) 2009, 2010 Vitaly Mayatskikh <v.mayatskih@gmail.com>
2 ;;
3 ;; This file is part of CL-ZMQ.
4 ;;
5 ;; Vitaly Mayatskikh grants you the rights to distribute
6 ;; and use this software as governed by the terms
7 ;; of the Lisp Lesser GNU Public License
8 ;; (http://opensource.franz.com/preamble.html),
9 ;; known as the LLGPL.
11 (cl:eval-when (:load-toplevel :execute)
12   (asdf:operate 'asdf:load-op :cffi)
13   (asdf:operate 'asdf:load-op :trivial-garbage)
14 #-windows
15   (asdf:operate 'asdf:load-op :iolib.syscalls))
17 (defpackage #:zeromq-asd
18   (:use :cl :asdf))
20 (in-package #:zeromq-asd)
22 (defsystem zeromq
23   :name "zeromq"
24   :version "0.1"
25   :author "Vitaly Mayatskikh <v.mayatskih@gmail.com>"
26   :licence "LGPLv3"
27   :description "Zero MQ 2 bindings"
28   :serial t
29   :components ((:file "package")
30                (:file "meta")
31                (:file "zeromq")
32                (:file "zeromq-api")))