Difference between revisions of "Pidgin Instant Messenger"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
m
Line 8: Line 8:
 
     * MySpaceIM  * QQ  * SILC  *  SIMPLE  * Sametime  * XMPP  * Yahoo!  * Zephyr
 
     * MySpaceIM  * QQ  * SILC  *  SIMPLE  * Sametime  * XMPP  * Yahoo!  * Zephyr
  
I download the client and GTK seperately, install GTK first, then Bonjour and finally the client.
+
I download the client and GTK separately, install GTK first, then Bonjour and finally the client.
  
<package
+
<source lang="xml">
 +
<package
 
     id="pidgin"
 
     id="pidgin"
 
     name="Pidgin 2.3.1"
 
     name="Pidgin 2.3.1"
Line 27: Line 28:
 
     <install cmd='"%SOFTWARE%\pidgin\pidgin-2.3.1-no-gtk.exe" /L=1033 /S' />
 
     <install cmd='"%SOFTWARE%\pidgin\pidgin-2.3.1-no-gtk.exe" /L=1033 /S' />
 
     <remove cmd='"%ProgramFiles%\pidgin\pidgin-uninst.exe"/L=1033 /S' />
 
     <remove cmd='"%ProgramFiles%\pidgin\pidgin-uninst.exe"/L=1033 /S' />
</package>
+
</package>
 
+
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 19:27, 12 March 2008

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>