7a1b71d438
2008/06/27 12:34:16 cn 1.2.8.2: #i91008# enhance possible parameter 2008/06/25 11:05:58 cn 1.2.8.1: #i91008# enhance possible parameter
65 lines
2.3 KiB
Text
Executable file
65 lines
2.3 KiB
Text
Executable file
@echo off
|
|
REM **************************************************************************
|
|
REM * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
REM *
|
|
REM * Copyright 2008 by Sun Microsystems, Inc.
|
|
REM *
|
|
REM * OpenOffice.org - a multi-platform office productivity suite
|
|
REM *
|
|
REM * $RCSfile: installoffice.btm,v $
|
|
REM *
|
|
REM * $Revision: 1.3 $
|
|
REM *
|
|
REM * This file is part of OpenOffice.org.
|
|
REM *
|
|
REM * OpenOffice.org is free software: you can redistribute it and/or modify
|
|
REM * it under the terms of the GNU Lesser General Public License version 3
|
|
REM * only, as published by the Free Software Foundation.
|
|
REM *
|
|
REM * OpenOffice.org is distributed in the hope that it will be useful,
|
|
REM * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
REM * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
REM * GNU Lesser General Public License version 3 for more details
|
|
REM * (a copy is included in the LICENSE file that accompanied this code).
|
|
REM *
|
|
REM * You should have received a copy of the GNU Lesser General Public License
|
|
REM * version 3 along with OpenOffice.org. If not, see
|
|
REM * <http://www.openoffice.org/license.html>
|
|
REM * for a copy of the LGPLv3 License.
|
|
REM ************************************************************************/
|
|
|
|
SET DESTPATH=%tmp%\%USERNAME%
|
|
SET DEBUG=false
|
|
SET OOO=false
|
|
SET PARAM=
|
|
|
|
for %opt in (%&%) DO (
|
|
if "%opt%" == "-d" (SET PARAM=%PARAM% -debug true ^ shift)
|
|
if "%opt%" == "-o" (SET PARAM=%PARAM% -ooo true ^ shift)
|
|
if "%opt%" == "-c" (SET PARAM=%PARAM% -cwscheckapi true ^ shift)
|
|
if "%opt%" == "-a" (SET PARAM=%PARAM% -autorun true ^ shift)
|
|
if "%opt%" == "-t" (SET DESTPATH=%2 ^ shift ^ shift)
|
|
if "%opt%" == "-h" goto usage
|
|
if "%opt%" == "/h" goto usage
|
|
)
|
|
|
|
SET LOCALINSTALLDIR=%DESTPATH%\office
|
|
SET LOCALUNPACKDIR=%DESTPATH%\unpack
|
|
|
|
call perl5 %SOLARENV%\bin\installoffice.pl -dest %LOCALINSTALLDIR% %PARAM% -cleanup true %&
|
|
|
|
quit %?
|
|
|
|
:usage
|
|
echo.
|
|
echo Usage: %0% [-t DESTPATH] [-o] [-d] >&2
|
|
echo.
|
|
echo [-d] installation with debug output>&2
|
|
echo.
|
|
echo [-o] force OpenOffice.org installation instead of StarOffice>&2
|
|
echo.
|
|
echo [-t] target path: path wehre tho office should installed to. The default is '%DESTPATH%'>&2
|
|
echo.
|
|
echo [-a] the office will be patched to run without FirstStartWizard >&2
|
|
echo.
|
|
quit 1
|