1# $Id: Makefile.PL,v 1.5 2010-06-11 20:00:24 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    (
13	$^O eq 'MSWin32'
14	    ? ()
15	    : (EXE_FILES => ['shell-quote'])
16    ),
17    dist		=> {
18    	PREOP		=> '$(MAKE) ci',
19	CI		=> 'cvs commit',
20	RCS_LABEL	=> 'cvs tag v$(VERSION_SYM)',
21    },
22    test		=> { TESTS => 'test.t' },
23);
24