r4480: Auto commit for Debian build
[cl-base64.git] / base64.asd
index 565cb5e5a287d8e102860622c982f9b892cec4b6..4e7ead7da5c86bc6151b57048c7f011e6571d416 100644 (file)
@@ -7,21 +7,33 @@
 ;;;; 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.5 2003/04/15 15:36:03 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 <kmr@debian.org>"
-  :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*))
   
   :components
-  ((:file "base64")))
+  ((:file "package")
+   (:file "encode" :depends-on ("package"))
+   (:file "decode" :depends-on ("package"))
+   ))
+
+(defmethod perform ((o test-op) (c (eql (find-system :base64))))
+  (or (load (compile-file "base64-tests.lisp"))
+         (error "test-op failed")))