r4803: *** empty log message ***
[md5.git] / md5.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          md5.asd
6 ;;;; Purpose:       ASDF definition file for Md5
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: md5.asd,v 1.1 2003/04/29 10:00:43 kevin Exp $
11 ;;;;
12 ;;;; This file, part of cl-md5, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-md5 users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem :md5
22   :name "cl-md5"
23   :author "Pierre Mai"
24   :version "1.1.4.2"
25   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
26   :licence "Public Domain"
27   :description "MD5 Message Digest function"
28   :long-description "This package contains functions to compute the MD5 sum on a stream or string."
29   
30   :perform (load-op :after (op md5)
31             (pushnew :md5 cl:*features*))
32   
33   :components
34   ((:file "md5")))
35
36