File: Makefile.PL

package info (click to toggle)
libstring-shellquote-perl 1.03-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 64 kB
  • ctags: 20
  • sloc: perl: 220; makefile: 55
file content (19 lines) | stat: -rw-r--r-- 541 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
# $Id: Makefile.PL,v 1.4 2005/05/03 10:44:03 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',
    EXE_FILES		=> ['shell-quote'],
    dist		=> {
    	PREOP		=> '$(MAKE) ci',
	CI		=> 'cvs commit',
	RCS_LABEL	=> 'cvs tag v$(VERSION_SYM)',
    },
    test		=> { TESTS => 'test.t' },
);