docs/readme.mdwn
changeset 32 bea3464128d0
parent 3 d792ad17832e
equal deleted inserted replaced
31:55395c6ef7ea 32:bea3464128d0
       
     1 
       
     2 # Operations on multiple buddies for MCabber
       
     3 
       
     4 This is mcabber module to do the same command on several contacts.
       
     5 
       
     6 Useful example binding for '/mark toggle' is provided in 'marking.rc'.
       
     7 After you marked some buddies, you can then run '/marked do <command>'
       
     8 to do 'command' with each of marked buddies jid's. 'command' must
       
     9 contain one %s where jid should be inserted. Any other %'s should be
       
    10 escaped as '%%'.
       
    11 
       
    12 # Installation
       
    13 
       
    14 To install it, you need:
       
    15 
       
    16  * mcabber headers
       
    17  * glib
       
    18  * cmake
       
    19  * make
       
    20  * c compiler (gcc)
       
    21  * linker (binutils)
       
    22 
       
    23 Then do:
       
    24 
       
    25     $ mkdir build
       
    26     $ cd build
       
    27     $ cmake ..
       
    28     $ make edit_cache
       
    29     $ make
       
    30     # make install
       
    31 
       
    32 Debian users can instead of make install do:
       
    33 
       
    34     $ make package
       
    35     # dpkg -i libmcabber-marking_*.deb
       
    36 
       
    37 Users of other distributions can select appropriate package generator,
       
    38 using cache editor.
       
    39 
       
    40 # License
       
    41 
       
    42 This code underlies terms of GNU GPL v2 or later. You can find it in
       
    43 file COPYING from this distribution or on a GNU web-site
       
    44 <http://www.gnu.org/licenses/>.
       
    45 
       
    46 # Contact
       
    47 
       
    48 I will be happy to get feedback, patches, suggestions, etc.
       
    49 You can send me email or contact via jabber <isbear@unixzone.org.ua>.
       
    50 
       
    51   -- Myhailo Danylenko <isbear@ukrpost.net>