|
NAMEExtUtils::InstallPaths - Build.PL install path logic made easyVERSIONversion 0.012SYNOPSISuse ExtUtils::InstallPaths; use ExtUtils::Install 'install'; GetOptions(\my %opt, 'install_base=s', 'install_path=s%', 'installdirs=s', 'destdir=s', 'prefix=s', 'uninst:1', 'verbose:1'); my $paths = ExtUtils::InstallPaths->new(%opt, dist_name => $dist_name); install($paths->install_map, $opt{verbose}, 0, $opt{uninst}); DESCRIPTIONThis module tries to make install path resolution as easy as possible.When you want to install a module, it needs to figure out where to install things. The nutshell version of how this works is that default installation locations are determined from ExtUtils::Config, and they may be individually overridden by using the "install_path" attribute. An "install_base" attribute lets you specify an alternative installation root like /home/foo and "prefix" does something similar in a rather different (and more complicated) way. "destdir" lets you specify a temporary installation directory like /tmp/install in case you want to create bundled-up installable packages. The following types are supported by default.
ATTRIBUTESinstalldirsThe default destinations for these installable things come from entries in your system's configuration. You can select from three different sets of default locations by setting the "installdirs" parameter as follows:'installdirs' set to: core site vendor uses the following defaults from ExtUtils::Config: lib => installprivlib installsitelib installvendorlib arch => installarchlib installsitearch installvendorarch script => installscript installsitescript installvendorscript bin => installbin installsitebin installvendorbin bindoc => installman1dir installsiteman1dir installvendorman1dir libdoc => installman3dir installsiteman3dir installvendorman3dir binhtml => installhtml1dir installsitehtml1dir installvendorhtml1dir [*] libhtml => installhtml3dir installsitehtml3dir installvendorhtml3dir [*] * Under some OS (eg. MSWin32) the destination for HTML documents is determined by the C<Config.pm> entry C<installhtmldir>. The default value of "installdirs" is "site". install_baseYou can also set the whole bunch of installation paths by supplying the "install_base" parameter to point to a directory on your system. For instance, if you set "install_base" to "/home/ken" on a Linux system, you'll install as follows:lib => /home/ken/lib/perl5 arch => /home/ken/lib/perl5/i386-linux script => /home/ken/bin bin => /home/ken/bin bindoc => /home/ken/man/man1 libdoc => /home/ken/man/man3 binhtml => /home/ken/html libhtml => /home/ken/html prefixThis sets a prefix, identical to ExtUtils::MakeMaker's PREFIX option. This does something similar to "install_base" in a much more complicated way.config()The ExtUtils::Config object used for this object.verboseThe verbosity of ExtUtils::InstallPaths. It defaults to 0create_packlistTogether with "module_name" this controls whether a packlist will be added; it defaults to 1.dist_nameThe name of the current module.module_nameThe name of the main module of the package. This is required for packlist creation, but in the future it may be replaced by dist_name. It defaults to "dist_name =~ s/-/::/gr" if dist_name is set.destdirIf you want to install everything into a temporary directory first (for instance, if you want to create a directory tree that a package manager like "rpm" or "dpkg" could create a package from), you can use the "destdir" parameter. E.g. Setting "destdir" to "/tmp/foo" will effectively install to "/tmp/foo/$sitelib", "/tmp/foo/$sitearch", and the like, except that it will use "File::Spec" to make the pathnames work correctly on whatever platform you're installing on.METHODSnewCreate a new ExtUtils::InstallPaths object. All attributes are valid arguments to the constructor, as well as this:
install_map()Return a map suitable for use with ExtUtils::Install. In most cases, this is the only method you'll need.install_destination($type)Returns the destination of a certain type.install_types()Return a list of all supported install types in the current configuration.is_default_installable($type)Given a file type, will return true if the file type would normally be installed when neither install-base nor prefix has been set. I.e. it will be true only if the path is set from the configuration object or set explicitly by the user via install_path.install_path($type)Gets the install path for a certain type.install_sets($installdirs, $type)Get the path for a certain $type with a certain $installdirs.install_base_relpaths($type, $relpath)Get the relative paths for use with install_base for a certain type.prefix_relative($installdirs, $type)Gets the path of a certain $type and $installdirs relative to the prefix.prefix_relpaths($install_dirs, $type)Get the default relative path to use in case the config install paths cannot be prefixified. You do not want to use this to get any relative path, but may require it to set it for custom types.original_prefix($installdirs)Get the original prefix for a certain type of $installdirs.SEE ALSO
AUTHORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2011 by Ken Williams, Leon Timmermans.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |