1ExtUtils::Helpers(3) User Contributed Perl Documentation ExtUtils::Helpers(3)
2
3
4
6 ExtUtils::Helpers - Various portability utilities for module builders
7
9 version 0.026
10
12 use ExtUtils::Helpers qw/make_executable split_like_shell/;
13
14 unshift @ARGV, split_like_shell($ENV{PROGRAM_OPTS});
15 write_script_to('Build');
16 make_executable('Build');
17
19 This module provides various portable helper functions for module
20 building modules.
21
23 make_executable($filename)
24 This makes a perl script executable.
25
26 split_like_shell($string)
27 This function splits a string the same way as the local platform does.
28
29 detildefy($path)
30 This function substitutes a tilde at the start of a path with the users
31 homedir in an appropriate manner.
32
33 man1_pagename($filename)
34 Returns the man page filename for a script.
35
36 man3_pagename($filename, $basedir)
37 Returns the man page filename for a Perl library.
38
40 Olivier Mengué and Christian Walde made "make_executable" work on
41 Windows.
42
44 • Ken Williams <kwilliams@cpan.org>
45
46 • Leon Timmermans <leont@cpan.org>
47
49 This software is copyright (c) 2004 by Ken Williams, Leon Timmermans.
50
51 This is free software; you can redistribute it and/or modify it under
52 the same terms as the Perl 5 programming language system itself.
53
54
55
56perl v5.32.1 2021-01-27 ExtUtils::Helpers(3)