Difference between revisions of "Jitsi"
From WPKG | Open Source Software Deployment and Distribution
(Added description; tidied up; improved readability; fixed check lines (presumably; it's just a guess)) |
|||
Line 1: | Line 1: | ||
+ | Jitsi (formerly SIP Communicator), available from http://jitsi.org/, is a VoIP, videoconferencing, and instant messaging application for Windows, Linux and Mac OS X. It supports several popular instant messaging and telephony protocols. Released under the terms of the LGPL, Jitsi is free and open source software. | ||
+ | |||
+ | Jitsi is still in beta development. | ||
+ | |||
+ | =WPKG Package= | ||
+ | |||
+ | ==32-bit Installer== | ||
+ | |||
<source lang="xml"> | <source lang="xml"> | ||
− | + | <package | |
id="jitsi" | id="jitsi" | ||
name="Jitsi" | name="Jitsi" | ||
Line 6: | Line 14: | ||
reboot="false" | reboot="false" | ||
priority="1"> | priority="1"> | ||
− | + | ||
− | + | <check type="logical" condition="or"> | |
− | + | ||
− | + | <check type="uninstall" condition="exists" path="Jitsi" /> | |
+ | |||
+ | <check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\PROCESSOR_ARCHITECTURE" value="x86" /> | ||
+ | </check> | ||
+ | |||
<install cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn ' /> | <install cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn ' /> | ||
+ | |||
<remove cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn /uninstall' /> | <remove cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn /uninstall' /> | ||
+ | |||
<upgrade cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn ' /> | <upgrade cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn ' /> | ||
− | + | </package> | |
+ | </source> | ||
− | + | ==64-bit Installer== | |
+ | |||
+ | (There is a mechanism instead where you could incorporate this into the same package as above) | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <package | ||
id="jitsi-64" | id="jitsi-64" | ||
name="Jitsi" | name="Jitsi" | ||
Line 22: | Line 42: | ||
reboot="false" | reboot="false" | ||
priority="1"> | priority="1"> | ||
− | + | ||
− | + | <check type="logical" condition="or"> | |
− | + | ||
− | + | <check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\PROCESSOR_ARCHITECTURE" value="AMD64" /> | |
+ | |||
+ | <check type="uninstall" condition="exists" path="Jitsi" /> | ||
+ | </check> | ||
+ | |||
<install cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn ' /> | <install cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn ' /> | ||
+ | |||
<remove cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn /uninstall' /> | <remove cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn /uninstall' /> | ||
+ | |||
<upgrade cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn ' /> | <upgrade cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn ' /> | ||
− | + | </package> | |
</source> | </source> | ||
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Revision as of 06:46, 25 October 2011
Jitsi (formerly SIP Communicator), available from http://jitsi.org/, is a VoIP, videoconferencing, and instant messaging application for Windows, Linux and Mac OS X. It supports several popular instant messaging and telephony protocols. Released under the terms of the LGPL, Jitsi is free and open source software.
Jitsi is still in beta development.
WPKG Package
32-bit Installer
<package
id="jitsi"
name="Jitsi"
revision="3689"
reboot="false"
priority="1">
<check type="logical" condition="or">
<check type="uninstall" condition="exists" path="Jitsi" />
<check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\PROCESSOR_ARCHITECTURE" value="x86" />
</check>
<install cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn ' />
<remove cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn /uninstall' />
<upgrade cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x86.exe" /qn ' />
</package>
64-bit Installer
(There is a mechanism instead where you could incorporate this into the same package as above)
<package
id="jitsi-64"
name="Jitsi"
revision="3689"
reboot="false"
priority="1">
<check type="logical" condition="or">
<check type="registry" condition="equals" path="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\PROCESSOR_ARCHITECTURE" value="AMD64" />
<check type="uninstall" condition="exists" path="Jitsi" />
</check>
<install cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn ' />
<remove cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn /uninstall' />
<upgrade cmd='"%SOFTWARE%\jitsi\jitsi-1.0-beta1-nightly.build.3689-x64.exe" /qn ' />
</package>