diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-10 04:53:04 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-06-10 04:53:04 +0000 |
commit | 617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f (patch) | |
tree | bcfe11291f5c920da39dfc65ba00f51356086a04 /dev-lisp/cl-inflate/files | |
parent | DEPEND on sed >= 4 (diff) | |
download | historical-617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f.tar.gz historical-617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f.tar.bz2 historical-617b5ce9977eeb5a7a7977ef4c6974bf0aecf19f.zip |
initial common lisp import
Diffstat (limited to 'dev-lisp/cl-inflate/files')
-rw-r--r-- | dev-lisp/cl-inflate/files/digest-cl-inflate-1.1.4.2.1 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-inflate/files/inflate.asd | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/dev-lisp/cl-inflate/files/digest-cl-inflate-1.1.4.2.1 b/dev-lisp/cl-inflate/files/digest-cl-inflate-1.1.4.2.1 new file mode 100644 index 000000000000..8312f4aa5114 --- /dev/null +++ b/dev-lisp/cl-inflate/files/digest-cl-inflate-1.1.4.2.1 @@ -0,0 +1 @@ +MD5 d723b009079f22b2a9ba1cdf92aff3b5 cl-inflate_1.1.4.2.1.orig.tar.gz 8458 diff --git a/dev-lisp/cl-inflate/files/inflate.asd b/dev-lisp/cl-inflate/files/inflate.asd new file mode 100644 index 000000000000..0303c50296e2 --- /dev/null +++ b/dev-lisp/cl-inflate/files/inflate.asd @@ -0,0 +1,37 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: inflate.asd +;;;; Purpose: ASDF definition file for Inflate +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: inflate.asd,v 1.1 2003/06/10 04:53:04 mkennedy Exp $ +;;;; +;;;; This file, part of cl-inflate, is Copyright (c) 2002 by Kevin M. Rosenberg +;;;; +;;;; cl-inflate 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) +;;;; ************************************************************************* + +(in-package :asdf) + +#-allegro +(defsystem :inflate + :name "cl-inflate" + :author "John Foderaro, Franz, Inc" + :version "1.1.4.2" + :maintainer "Kevin M. Rosenberg <kmr@debian.org>" + :licence "GNU Lesser General Public License" + :description "Franz's Inflate compressed files module" + :long-description "Inflate decompresses gzip, winzip and jar files." + + :perform (load-op :after (op inflate) + (pushnew :inflate cl:*features*)) + + :components + ((:file "inflate"))) + + |