X-Git-Url: http://git.kpe.io/?p=md5.git;a=blobdiff_plain;f=md5.asd;fp=md5.asd;h=825e132c8a8ee27e0292db9c1bc85759924a42fa;hp=cb4f82ae66d70b1b2a9ab631dca67da8d4317504;hb=c7461f9c53541862b0262c9164a81b37eac94ba0;hpb=c2bcb5f0064a552d7f7b41e867c1f023f85b9cc7 diff --git a/md5.asd b/md5.asd index cb4f82a..825e132 100644 --- a/md5.asd +++ b/md5.asd @@ -4,32 +4,27 @@ ;;;; ;;;; Name: md5.asd ;;;; Purpose: ASDF definition file for Md5 -;;;; Programmer: Kevin M. Rosenberg +;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Sep 2002 ;;;; -;;;; $Id: md5.asd,v 1.1 2003/04/29 10:00:43 kevin Exp $ +;;;; $Id: md5.asd,v 1.2 2003/05/06 04:56:48 kevin Exp $ ;;;; -;;;; This file, part of cl-md5, is Copyright (c) 2002 by Kevin M. Rosenberg -;;;; -;;;; cl-md5 users are granted the rights to distribute and use this software -;;;; as governed by the terms of the GNU Lesser General Public License -;;;; (http://www.gnu.org/licenses/lgpl.html) +;;;; This file can be freely copied and have been placed in the public domain. ;;;; ************************************************************************* -(in-package :asdf) +(defpackage #:md5-system (:use #:asdf #:cl)) + +(in-package :md5-system) -(defsystem :md5 +(defsystem md5 :name "cl-md5" :author "Pierre Mai" - :version "1.1.4.2" + :version "1.8" :maintainer "Kevin M. Rosenberg " :licence "Public Domain" :description "MD5 Message Digest function" :long-description "This package contains functions to compute the MD5 sum on a stream or string." - :perform (load-op :after (op md5) - (pushnew :md5 cl:*features*)) - :components ((:file "md5")))