1# $Id: Makefile.PL,v 1.2 1997-12-07 12:05:57-05 roderick Exp $
2#
3# Copyright (c) 1997 Roderick Schertler.  All rights reserved.  This
4# program is free software; you can redistribute it and/or modify it
5# under the same terms as Perl itself.
6
7use ExtUtils::MakeMaker;
8
9WriteMakefile(
10    NAME		=> 'String::ShellQuote',
11    VERSION_FROM	=> 'ShellQuote.pm',
12    dist		=> {
13    	COMPRESS 	=> 'gzip --best',
14    	DIST_CP		=> 'ln',
15    	PREOP		=> '$(MAKE) ci',
16    	SUFFIX		=> 'gz',
17    },
18    test		=> { TESTS => 'test.t' },
19);
20