=pod =head1 EXPORTS =over 4 =cut our $host = 'obsidian'; # linux # our $host = 'tinman'; # windows =pod =item B Returns the root of the build cache directory, where temporary files are stored during a build, and retained for later builds, to improve speed. Must not be on a separate host, or mis-sync may occur. =cut sub build_cache_root() { return '/home/mike/var/build'; } # uses only subdirectory 'textbender', normally =pod =item B Returns the temporary directory of the build target host. =cut sub target_temp_dir() { if( $host eq 'obsidian' ) { return '/tmp'; } elsif( $host eq 'tinman' ) { return '/mnt/lan/tinman-temp'; } else { die; } } =pod =back =cut 1;