Add support for square brackets around IPv6 addresses to
[puri.git] / puri.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; Programmer: Kevin Rosenberg
3
4
5 (in-package #:cl-user)
6 (defpackage #:puri-system (:use #:cl #:asdf))
7 (in-package #:puri-system)
8
9 (defsystem puri
10   :name "cl-puri"
11   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
12   :licence "GNU Lesser General Public License"
13   :description "Portable Universal Resource Indentifier Library"
14   :components
15   ((:file "src"))
16   :in-order-to ((test-op (test-op "puri/test"))))
17
18 (defsystem puri/test
19     :depends-on (:ptester :puri)
20     :components
21     ((:file "tests"))
22     :perform (test-op (o s)
23                       (or (funcall (intern (symbol-name '#:do-tests)
24                                            (find-package '#:puri/test)))
25                           (error "test-op failed"))))