Difference between revisions of "Pidgin Instant Messenger"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Added Link to pidgins' trac wiki on unattended installation)
Line 33: Line 33:
 
= Links =
 
= Links =
 
* http://www.pidgin.im/
 
* http://www.pidgin.im/
 +
* [http://developer.pidgin.im/wiki/Installing%20Pidgin#UnattendedInstallations More informations on pidgin setup silent switches
 
* [http://downloads.sourceforge.net/pidgin/pidgin-2.5.4.exe download pidgin 2.5.4 for Windows]
 
* [http://downloads.sourceforge.net/pidgin/pidgin-2.5.4.exe download pidgin 2.5.4 for Windows]
  

Revision as of 13:11, 14 February 2009

This is a silent installer and uninstaller for Pidgin.

Pidgin is a multi-protocol Instant Messaging client that allows you to use all of your IM accounts at once.

Pidgin can work with:

   * AIM   * Bonjour   * Gadu-Gadu   * Google Talk   * Groupwise   * ICQ   *  IRC   * MSN
   * MySpaceIM   * QQ   * SILC   *  SIMPLE   * Sametime   * XMPP   * Yahoo!   * Zephyr

I download the client and GTK separately, install GTK first, then Bonjour and finally the client.

<package
    id="pidgin"
    name="Pidgin 2.3.1"
    revision="4"
    reboot="false"
    priority="1">
    <depends package-id="gtk"/>
    <check type="file" condition="versionequalto" path="%programfiles%\pidgin\pidgin.exe" value="2.3.1.0" />
    <install cmd='"%SOFTWARE%\pidgin\bonjoursetup.exe" /qn ' >
       <exit code="11728" />
    </install>
    <install cmd='cmd /C taskkill /F /IM pidgin.exe' >
       <exit code='1' />
       <exit code='128' />  
    </install>  
    <install cmd='"%SOFTWARE%\pidgin\pidgin-2.3.1-no-gtk.exe" /L=1033 /S' />
    <remove cmd='"%ProgramFiles%\pidgin\pidgin-uninst.exe"/L=1033 /S' />
</package>

Links