update credits
[LibreOffice.git] / solenv / bin / packager.pl
blobd8ccd0025eca4213401e3ecc947566f9910ded26
2 # This file is part of the LibreOffice project.
4 # This Source Code Form is subject to the terms of the Mozilla Public
5 # License, v. 2.0. If a copy of the MPL was not distributed with this
6 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 # This file incorporates work covered by the following license notice:
10 # Licensed to the Apache Software Foundation (ASF) under one or more
11 # contributor license agreements. See the NOTICE file distributed
12 # with this work for additional information regarding copyright
13 # ownership. The ASF licenses this file to you under the Apache
14 # License, Version 2.0 (the "License"); you may not use this file
15 # except in compliance with the License. You may obtain a copy of
16 # the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 use lib ("$ENV{SOLARENV}/bin/modules");
21 use Cwd;
22 use packager::check;
23 use packager::files;
24 use packager::globals;
25 use packager::work;
27 ####################################
28 # Main program
29 ####################################
31 packager::check::check_environment();
32 packager::check::check_packlist();
33 packager::check::check_parameter();
35 packager::work::set_global_variable();
37 my $packagelist = packager::files::read_file($packager::globals::packlistname);
39 my $targets = packager::work::create_package_todos($packagelist);
41 packager::work::execute_system_calls($targets);
43 if ( $packager::globals::logging )
45 packager::files::save_file($packager::globals::logfilename, \@packager::globals::logfileinfo);
46 print "Log file written: $packager::globals::logfilename\n";
49 ####################################
50 # End main program
51 ####################################