1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
#!/usr/local/bin/perl
#
#
$gpt_source_dir='/sandbox/smartin/Packages/globus_build_tools/gpt/perl';
$gpt_web_dir='/mcs/www-unix.globus.org/packaging/GPT';
#----------------------- GPT perl modules -------------------------
system "pod2html --infile=$gpt_source_dir/GPT/BinaryDependency.pm".
" --outfile=$gpt_web_dir/modules/BinaryDependency_pm.html";
system "pod2html --infile=$gpt_source_dir/GPT/SourceDependency.pm".
" --outfile=$gpt_web_dir/modules/SourceDependency_pm.html";
system "pod2html --infile=$gpt_source_dir/GPT/Package.pm".
" --outfile=$gpt_web_dir/modules/Package_pm.html";
system "pod2html --infile=$gpt_source_dir/GPT/XML.pm".
" --outfile=$gpt_web_dir/modules/XML_pm.html";
system "pod2html --infile=$gpt_source_dir/GPT/Filelist.pm".
" --outfile=$gpt_web_dir/modules/Filelist_pm.html";
system "pod2html --infile=$gpt_source_dir/GPT/Version.pm".
" --outfile=$gpt_web_dir/modules/Version_pm.html";
# no documentation for these two yet.
#
#system "pod2html --infile=$gpt_source_dir/GPT/Definitions.pm".
# " --outfile=$gpt_web_dir/modules/Definitions_pm.html";
#
#system "pod2html --infile=$gpt_source_dir/GPT/Dependencies.pm".
# " --outfile=$gpt_web_dir/modules/Dependencies_pm.html";
#----------------------- GPT perl scripts -------------------------
system "pod2html --infile=$gpt_source_dir/scripts/gpt_build_config".
" --outfile=$gpt_web_dir/scripts/gpt_build_config.html";
# no documentation for this one yet.
#
#system "pod2html --infile=$gpt_source_dir/scripts/gpt_create_automake_rules".
# " --outfile=$gpt_web_dir/scripts/gpt_create_automake_rules.html";
system "pod2html --infile=$gpt_source_dir/scripts/gpt_extract_data".
" --outfile=$gpt_web_dir/scripts/gpt_extract_data.html";
system "pod2html --infile=$gpt_source_dir/scripts/gpt_generate_bin_pkg_data".
" --outfile=$gpt_web_dir/scripts/gpt_generate_bin_pkg_data.html";
system "pod2html --infile=$gpt_source_dir/scripts/gpt_sort_filelist".
" --outfile=$gpt_web_dir/scripts/gpt_sort_filelist.html";
system "pod2html --infile=$gpt_source_dir/scripts/gpt_setup".
" --outfile=$gpt_web_dir/scripts/gpt_setup.html";
system "pod2html --infile=$gpt_source_dir/scripts/gpt_edit".
" --outfile=$gpt_web_dir/scripts/gpt_edit.html";
system "pod2html --infile=$gpt_source_dir/scripts/gpt_undefines".
" --outfile=$gpt_web_dir/scripts/gpt_undefines.html";
|