blob: 59792692a95dd9a125f8a682423d7cac636e15d2 (
plain)
1 # Description: A Jabber Instant Messenger
2 # URL: http://www.gajim.org
3 # Maintainer: Mikhail Kolesnik, mike at openbunker dot org
4 # Packager: Artur Tulyulya, artur at idt dot org dot ua
5 # Depends on: pygtk pyopenssl pycrypto libasyncns-python
6 # Nice to have: gtkspell dbus-python gnome-python-extras bind docutils libxss notify-python
7 # you'll want nslookup (from bind) OR libasyncns-python
8
9 name=gajim
10 version=0.14.4
11 release=1
12 source=(http://www.gajim.org/downloads/0.14/$name-$version.tar.bz2)
13
14 build() {
15 cd $name-$version
16 wget http://xmpp.org/services/services.xml -O data/other/servers.xml
17 ./configure --prefix=/usr \
18 --disable-nls \
19 --mandir=/usr/man
20 make
21 make DESTDIR=$PKG install
22 rm -rf $PKG/usr/share/doc
23 }
|