emailservices/emailservermonitor/sis/makeEmailServerMonitorSisx.bat
changeset 0 8466d47a6819
child 12 f5907b1a1053
equal deleted inserted replaced
-1:000000000000 0:8466d47a6819
       
     1 @echo off
       
     2 REM * 
       
     3 REM * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     4 REM * All rights reserved.
       
     5 REM * This component and the accompanying materials are made available
       
     6 REM * under the terms of "Eclipse Public License v1.0"
       
     7 REM * which accompanies this distribution, and is available
       
     8 REM * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 REM * 
       
    10 REM * Initial Contributors:
       
    11 REM * Nokia Corporation - initial contribution.
       
    12 REM * 
       
    13 REM * Contributors:
       
    14 REM * 
       
    15 REM * Description:
       
    16 REM * Script that creates and signs commonemail sisx packages
       
    17 REM * 
       
    18 
       
    19 @echo #################################################
       
    20 @echo ### Making Email Server Monitor SISX-packages ###
       
    21 @echo ###                                           ###
       
    22 @echo.
       
    23 
       
    24 REM Check if the latest added certificate folder/file exists. If not, copy certs from network drive.
       
    25 IF NOT EXIST RnD_certs\s60\RDTest_02.der (
       
    26 @echo ### RnD_certs not found, copying files from network drive
       
    27 mkdir RnD_certs
       
    28 xcopy \\Vagrp007\groups3\Myme\development\RnD_certs RnD_certs\ /S
       
    29 @echo.
       
    30 )
       
    31 
       
    32 
       
    33 @echo ### Making Email Server Monitor urel SISX-package [EmailServerMonitor.sisx]
       
    34 
       
    35 makesis EmailServerMonitor.pkg
       
    36 @echo.
       
    37 copy /Y EmailServerMonitor.SIS EmailServerMonitor.sisx
       
    38 signsis EmailServerMonitor.sisx EmailServerMonitor.sisx RnD_certs\s60\RDTest_02.der RnD_certs\s60\RDTest_02.key
       
    39 @echo.
       
    40 
       
    41 @echo ### Making Email Server Monitor udeb SISX-package [EmailServerMonitor_udeb.sisx]
       
    42 
       
    43 makesis EmailServerMonitor_udeb.pkg
       
    44 @echo.
       
    45 copy /Y EmailServerMonitor_udeb.SIS EmailServerMonitor_udeb.sisx
       
    46 signsis EmailServerMonitor_udeb.sisx EmailServerMonitor_udeb.sisx RnD_certs\s60\RDTest_02.der RnD_certs\s60\RDTest_02.key
       
    47 @echo.
       
    48 
       
    49 @echo ### Making Email Server Monitor udeb (no auto run) SISX-package [EmailServerMonitor_udeb_norun.sisx]
       
    50 
       
    51 makesis EmailServerMonitor_udeb_norun.pkg
       
    52 @echo.
       
    53 copy /Y EmailServerMonitor_udeb_norun.SIS EmailServerMonitor_udeb_norun.sisx
       
    54 signsis EmailServerMonitor_udeb_norun.sisx EmailServerMonitor_udeb_norun.sisx RnD_certs\s60\RDTest_02.der RnD_certs\s60\RDTest_02.key
       
    55 @echo.
       
    56 
       
    57 
       
    58 @echo ###  Done!  ###
       
    59 @echo ###############