File: puri.asd

package info (click to toggle)
cl-puri 1%3A1.5.7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 160 kB
  • sloc: lisp: 1,531; makefile: 34
file content (25 lines) | stat: -rw-r--r-- 775 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; Programmer: Kevin Rosenberg


(in-package #:cl-user)
(defpackage #:puri-system (:use #:cl #:asdf))
(in-package #:puri-system)

(defsystem puri
  :name "cl-puri"
  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
  :licence "GNU Lesser General Public License"
  :description "Portable Universal Resource Indentifier Library"
  :components
  ((:file "src"))
  :in-order-to ((test-op (test-op "puri/test"))))

(defsystem puri/test
    :depends-on (:ptester :puri)
    :components
    ((:file "tests"))
    :perform (test-op (o s)
                      (or (funcall (intern (symbol-name '#:do-tests)
		                           (find-package '#:puri/test)))
                          (error "test-op failed"))))