X-Git-Url: http://git.kpe.io/?p=cl-base64.git;a=blobdiff_plain;f=base64.asd;h=a26db954e1e5eba5d8d4ad1965616751e3ed0e69;hp=5d3dad53eee819b02dc39486a37c72b0eeafe431;hb=90fa8d68b0f3ab59ccba908ca084e4959e0a2cc7;hpb=9d5e8be84951cef7f6a11bb60af0c64d8bd1e254 diff --git a/base64.asd b/base64.asd index 5d3dad5..a26db95 100644 --- a/base64.asd +++ b/base64.asd @@ -7,24 +7,37 @@ ;;;; 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.16 2003/04/15 16:08:21 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." :perform (load-op :after (op base64) (pushnew :base64 cl:*features*)) + + ;; depends-on only needed for test-op + :depends-on (:kmrcl :tester) :components ((:file "package") (:file "encode" :depends-on ("package")) (:file "decode" :depends-on ("package")) + (:file "base64-tests" :depends-on ("encode" "decode")) )) + +(defmethod perform ((o test-op) (c (eql (find-system :base64)))) + (or (funcall (intern (symbol-name #:test-base64) (find-package 'base64))) + (error "test-op failed")))