Lines Matching refs:installer
24 package installer::windows::strip;
27 use installer::converter;
28 use installer::existence;
29 use installer::globals;
30 use installer::logger;
31 use installer::pathanalyzer;
32 use installer::systemactions;
69 $installer::logger::Lang->printf("Systemcall: %s\n", $systemcall);
73 $installer::logger::Lang->printf("ERROR: Could not strip %s!\n", $filename);
77 $installer::logger::Lang->printf("SUCCESS: Stripped library %s!\n", $filename);
89 installer::logger::include_header_into_logfile("Stripping files:");
91 my $strippeddirbase = installer::systemactions::create_directories("stripped", $languagestringref);
93 if (! installer::existence::exists_in_array($strippeddirbase, \@installer::globals::removedirs))
95 push(@installer::globals::removedirs, $strippeddirbase);
113 if ( $^O =~ /cygwin/i ) { installer::worker::generate_cygwin_pathes($filelist); }
122 installer::pathanalyzer::make_absolute_filename_to_relative_filename(\$shortfilename);
124 $installer::logger::Lang->printf("Strip: %s\n", $shortfilename);
134 my $strippeddir = $strippeddirbase . $installer::globals::separator . $onelanguage;
135 …installer::systemactions::create_directory($strippeddir); # creating language specific subdirector…
137 my $destfilename = $strippeddir . $installer::globals::separator . $shortfilename;
138 installer::systemactions::copy_one_file($sourcefilename, $destfilename);