File: Makefile.PL

package info (click to toggle)
libstring-shellquote-perl 1.04-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 338; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (2)
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' },
);