X-Git-Url: http://git.kpe.io/?p=cl-base64.git;a=blobdiff_plain;f=base64.asd;h=5cfc47737cc0d5265dcdf93fd1b789044e876beb;hp=5d3dad53eee819b02dc39486a37c72b0eeafe431;hb=0e74ef4c46d71c9e8ece1f0c9c185d4abbb06f44;hpb=7943dcc78d45dbb845a1fc6d2220dd732fdc6d53 diff --git a/base64.asd b/base64.asd index 5d3dad5..5cfc477 100644 --- a/base64.asd +++ b/base64.asd @@ -7,15 +7,20 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: base64.asd,v 1.3 2003/01/12 20:25:26 kevin Exp $ +;;;; $Id: base64.asd,v 1.4 2003/04/15 15:34:43 kevin Exp $ ;;;; ************************************************************************* (in-package :asdf) +(cl:defpackage #:base64-system + (:use #:asdf #:cl)) +(cl:in-package #:base64-system) + + (defsystem :base64 :name "cl-base64" - :author "Kevin M. Rosenberg based on code by Juri Pakaste" - :version "1.0" + :author "Kevin M. Rosenberg based on initial code by Juri Pakaste" + :version "3.1" :maintainer "Kevin M. Rosenberg " :licence "BSD-style" :description "Base64 encoding and decoding with URI support." @@ -28,3 +33,7 @@ (:file "encode" :depends-on ("package")) (:file "decode" :depends-on ("package")) )) + +(defmethod ((o test-op) (c (eql (find-system :base64)))) + (or (load (compile-file "base64-tests.lisp")) + (error "test-op failed")))