blob: 0303c50296e2cad5c6658f4173c05931271f6493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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")))
|