;;;; -*- 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.3 2003/01/12 20:25:26 kevin Exp $ ;;;; ************************************************************************* (in-package :asdf) (defsystem :base64 :name "cl-base64" :author "Kevin M. Rosenberg based on code by Juri Pakaste" :version "1.0" :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*)) :components ((:file "package") (:file "encode" :depends-on ("package")) (:file "decode" :depends-on ("package")) ))