Started CLHS-like docs.
[iolib.git] / iolib.asd
blobf2048f70103eb4bb02f260e9030d66c3649cf5e9
1 ;;;; -*- Mode: Lisp; indent-tabs-mode: nil -*-
2 ;;;
3 ;;; iolib.asd --- ASDF system definition.
4 ;;;
5 ;;; Copyright (C) 2006-2008, Stelian Ionescu  <sionescu@common-lisp.net>
6 ;;;
7 ;;; This code is free software; you can redistribute it and/or
8 ;;; modify it under the terms of the version 2.1 of
9 ;;; the GNU Lesser General Public License as published by
10 ;;; the Free Software Foundation, as clarified by the
11 ;;; preamble found here:
12 ;;;     http://opensource.franz.com/preamble.html
13 ;;;
14 ;;; This program is distributed in the hope that it will be useful,
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ;;; GNU General Public License for more details.
18 ;;;
19 ;;; You should have received a copy of the GNU Lesser General
20 ;;; Public License along with this library; if not, write to the
21 ;;; Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
22 ;;; Boston, MA 02110-1301, USA
24 (defsystem :iolib
25   :description "I/O library."
26   :author "Stelian Ionescu <sionescu@common-lisp.net>"
27   :maintainer "Stelian Ionescu <sionescu@common-lisp.net>"
28   :version "0.5.4"
29   :licence "LLGPL-2.1"
30   :depends-on (:io.multiplex :io.streams :net.sockets)
31   :pathname (merge-pathnames (make-pathname :directory '(:relative "iolib"))
32                              *load-truename*)
33   :components ((:file "pkgdcl")))
35 (defmethod perform ((o test-op) (c (eql (find-system :iolib))))
36   (operate 'test-op :iolib-tests))
38 (defmethod operation-done-p ((o test-op) (c (eql (find-system :iolib))))
39   nil)