summaryrefslogtreecommitdiffstats
path: root/Necessitas_SDK/packages/org.kde.necessitas.tools.sdkmaintenance/meta/installscript.qs
blob: 0e54d3c0cc9c9b991455d4abf00bcaee4d55941b (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
    Copyright (c) 2011, BogDan Vatra <bog_dan_ro@yahoo.com>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

// constructor
function Component()
{
    if ( component.fromOnlineRepository )
    {
        if (installer.value("os") == "x11")
        {
            component.addDownloadableArchive( "sdkmaintenance-linux-x86.7z" );
        }
        else if (installer.value("os") == "win")
        {
            component.addDownloadableArchive( "sdkmaintenance-windows.7z" );
        }
        else if (installer.value("os") == "mac")
        {
            component.addDownloadableArchive( "sdkmaintenance-darwin-x86.7z" );
        }
    }

    if (installer.value("os") == "win") {
        component.installerbaseBinaryPath = "@TargetDir@/temp/SDKMaintenanceToolBase.exe";
    }
    else if (installer.value("os") == "x11" || installer.value("os") == "mac")
    {
        component.installerbaseBinaryPath = "@TargetDir@/.tempSDKMaintenanceTool";
    }
    installer.setInstallerBaseBinary(component.installerbaseBinaryPath);
}


Component.prototype.createOperationsForArchive = function(archive)
{
    //installer.performOperation in older versions of the installer framework don't supports @TargetDir@
    var normalizedInstallerbaseBinaryPath = component.installerbaseBinaryPath.replace(/@TargetDir@/,
        installer.value("TargetDir"));

    installer.performOperation("SimpleMoveFile",
        new Array(normalizedInstallerbaseBinaryPath, normalizedInstallerbaseBinaryPath + "_backup"));
    component.createOperationsForArchive(archive);
}

Component.prototype.createOperations = function()
{
    // Call the base createOperations(unpacking ...)
    component.createOperations();
    if (installer.value("os") == "win") {
        var win_application = installer.value("TargetDir") + "/SDKMaintenanceTool.exe";
        component.addOperation( "RegisterPersistentSettings",
                                "updateInfo.xml",
                                "Application",
                                win_application );
        component.addOperation( "CreateShortcut",
                                win_application,
                                "@StartMenuDir@/Maintain Qt SDK.lnk",
                                " --manage-packages");
        component.addOperation( "CreateShortcut",
                                win_application,
                                "@StartMenuDir@/Update Qt SDK.lnk",
                                " --updater");
    }
    else if (installer.value("os") == "x11")
    {
        component.addOperation( "RegisterPersistentSettings",
                                "updateInfo.xml",
                                "Application",
                                "@TargetDir@/SDKMaintenanceTool" );
        component.addOperation( "InstallIcons", "@TargetDir@/icons" );
        component.addOperation( "CreateDesktopEntry",
                                "Necessitas-SDKMaintenanceTool.desktop",
                                "Type=Application\nExec=@TargetDir@/SDKMaintenanceTool\nPath=@TargetDir@\nName=SDK-Maintenance-Tool\nGenericName=Install or uninstall components of the Qt SDK.\nIcon=Nokia-SDKPM\nTerminal=false\nCategories=Development;Qt;"
                               );
        component.addOperation( "CreateDesktopEntry",
                                "Necessitas-SDKUpdater.desktop",
                                "Type=Application\nExec=@TargetDir@/SDKMaintenanceTool --updater\nPath=@TargetDir@\nName=SDK-Update-Tool\nGenericName=Update components of the Qt SDK.\nIcon=Nokia-SDKUp\nTerminal=false\nCategories=Development;Qt;"
                               );
    }
    else if (installer.value("os") == "mac")
    {
        component.addOperation( "RegisterPersistentSettings",
                                "updateInfo.xml",
                                "Application",
                                "@TargetDir@/SDKMaintenanceTool.app/Contents/MacOS/SDKMaintenanceTool" );
    }

    component.addOperation( "RegisterPersistentSettings",
                            "updateInfo.xml",
                            "CheckOnlyArgument",
                            "--checkupdates" );
    component.addOperation( "RegisterPersistentSettings",
                            "updateInfo.xml",
                            "RunUiArgument",
                            "--updater" );
}