;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- ;;;; ************************************************************************* ;;;; FILE IDENTIFICATION ;;;; ;;;; Name: base64.asd ;;;; Purpose: ASDF definition file for Base64 ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; ;;;; $Id: base64.asd,v 1.15 2003/04/15 16:05:39 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 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 (test-base64) (error "test-op failed")))