X-Git-Url: http://git.kpe.io/?p=cl-base64.git;a=blobdiff_plain;f=base64.asd;h=a947a525bc8ff8db51600bb45ed9d5326e444a8f;hp=565cb5e5a287d8e102860622c982f9b892cec4b6;hb=3771e78939bb92664c2e3064256eb9dd1650be3b;hpb=64455dcb0317949fd476297aec2c1cf7cd046fe3 diff --git a/base64.asd b/base64.asd index 565cb5e..a947a52 100644 --- a/base64.asd +++ b/base64.asd @@ -7,21 +7,37 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: base64.asd,v 1.1 2002/12/29 06:08:15 kevin Exp $ +;;;; $Id: base64.asd,v 1.11 2003/04/15 15:54:51 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 and Juri Pakaste" - :version "1.0" + :author "Kevin M. Rosenberg based on initial code by Juri Pakaste" + :version "3.1" :maintainer "Kevin M. Rosenberg " - :licence "Public domain" - :description "Base64 encode and decoding" + :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 "base64"))) + ((: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 (test-base64) + (error "test-op failed")))