GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
ExtUtils::Builder::Plan(3) User Contributed Perl Documentation ExtUtils::Builder::Plan(3)

ExtUtils::Builder::Plan - An ExtUtils::Builder Plan

version 0.017

 package Frobnicate;
 sub plan {
     my %nodes = ...;
     return ExtUtils::Builder::Plan->new(
         nodes => \%nodes,
     );
 }
 my $plan = Frobnicate->plan(@args);
 
 # various consumption methods
 $plan->run('foo');
 say $_->target for $plan->nodes;

An object of this class describes a process. It contains one or more nodes. This is enough to describe whole building processes, in fact its "run" method is a tiny "make" engine.

This is the set of all nodes in this plan.

This runs the process. Similar to "make", it checks for each node if it is necessary to run, and if not skips it. $target may either be a single string or an array ref of strings for the targets to run.

Returns the node for the specified $target.

node_names()

Returns the names of all the nodes.

This merges this plan with another, and returns the new plan. Each entry may only exist on one side of the merge.

phonies()

This returns the names of all phony targets.

Leon Timmermans <fawaka@gmail.com>

This software is copyright (c) 2013 by 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.

2025-04-09 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.