5d3dad53eee819b02dc39486a37c72b0eeafe431
[cl-base64.git] / base64.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          base64.asd
6 ;;;; Purpose:       ASDF definition file for Base64
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Dec 2002
9 ;;;;
10 ;;;; $Id: base64.asd,v 1.3 2003/01/12 20:25:26 kevin Exp $
11 ;;;; *************************************************************************
12
13 (in-package :asdf)
14
15 (defsystem :base64
16   :name "cl-base64"
17   :author "Kevin M. Rosenberg based on code by Juri Pakaste"
18   :version "1.0"
19   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
20   :licence "BSD-style"
21   :description "Base64 encoding and decoding with URI support."
22   
23   :perform (load-op :after (op base64)
24             (pushnew :base64 cl:*features*))
25   
26   :components
27   ((:file "package")
28    (:file "encode" :depends-on ("package"))
29    (:file "decode" :depends-on ("package"))
30    ))