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;;;; Author:        Kevin M. Rosenberg
8;;;; Date Started:  Sep 2002
9;;;;
10;;;; $Id: md5.asd 7061 2003-09-07 06:34:45Z kevin $
11;;;;
12;;;; This file can be freely copied and have been placed in the public domain.
13;;;; *************************************************************************
14
15(defpackage #:md5-system (:use #:asdf #:cl))
16
17(in-package :md5-system)
18
19(defsystem md5
20  :name "cl-md5"
21  :author "Pierre Mai"
22  :version "1.8"
23  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
24  :licence "Public Domain"
25  :description "MD5 Message Digest function"
26  :long-description "This package contains functions to compute the MD5 sum on a stream or string."
27
28  :components
29  ((:file "md5")))
30
31
32