1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# $Id: Makefile.PL,v 1.5 2010-06-11 20:00:24 roderick Exp $
#
# Copyright (c) 1997 Roderick Schertler. All rights reserved. This
# program is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'String::ShellQuote',
VERSION_FROM => 'ShellQuote.pm',
(
$^O eq 'MSWin32'
? ()
: (EXE_FILES => ['shell-quote'])
),
dist => {
PREOP => '$(MAKE) ci',
CI => 'cvs commit',
RCS_LABEL => 'cvs tag v$(VERSION_SYM)',
},
test => { TESTS => 'test.t' },
);
|