# $Id: PKGBUILD 53806 2009-10-03 12:40:04Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Alexander Fehr # Contributor: Lucien Immink pkgname=pidgin pkgver=2.6.2 pkgrel=3 pkgdesc="Multi-protocol instant messaging client" arch=('i686' 'x86_64') url="http://pidgin.im/" license=('GPL') depends=('startup-notification' 'gtkspell' 'libxss' 'nss' 'libsasl' 'python' 'hicolor-icon-theme' 'silc-toolkit' 'gstreamer0.10-base' 'farsight2') makedepends=('avahi' 'tk' 'ca-certificates' 'intltool') optdepends=('gstreamer0.10-good: to play sounds' 'avahi: Bonjour protocol support' 'tk: Tcl/Tk scripting support' 'ca-certificates: SSL CA certificates' 'aspell: for spelling correction') replaces=('gaim') options=('!libtool') install=pidgin.install source=(http://downloads.sourceforge.net/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.bz2) md5sums=('a1bbb3c9be7d4ee1f53590d319cbfa72') build() { cd ${srcdir}/${pkgname}-$pkgver ./configure --prefix=/usr \ --sysconfdir=/etc \ --disable-schemas-install \ --disable-meanwhile \ --disable-nm \ --disable-perl \ --disable-gnutls \ --enable-cyrus-sasl \ --disable-doxygen \ --with-system-ssl-certs=/etc/ssl/certs || return 1 make || return 1 make DESTDIR="$pkgdir" install || return 1 # Remove GConf schema file rm -rf "$pkgdir/etc" || return 1 }