r3727: *** empty log message ***
[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.2 2002/12/29 06:14:49 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 "src")))