All pastes #720944 Raw Edit

Someone

public text v1 · immutable
#720944 ·published 2007-09-30 20:32 UTC
rendered paste body
# $Id: PKGBUILD,v 1.9 2007/08/21 18:19:18 dan Exp $
# Contributor: Lucien Immink <l.immink@student.fnt.hvu.nl>
# Maintainer: Dan McGee <dan@archlinux.org>

pkgname=pidgin
pkgver=2.1.1
pkgrel=1
pkgdesc="A GTK+-based messaging client"
arch=(i686 x86_64)
license=('GPL')
url="http://pidgin.im"
depends=('startup-notification' 'gtkspell' 'libxss' 'gstreamer0.10' 'dbus-glib>=0.73')
makedepends=('pkgconfig' 'tk' 'avahi' 'intltool')
replaces=('gaim')
conflicts=('gaim')
provides=('gaim')
options=(!libtool)
install=pidgin.install
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('eb29fecb2f3a6d4790f47ce8e658c07c')

build() {
  cd ${startdir}/src/${pkgname}-${pkgver}
  # gconf won't die with the --disable-schemas-install option
  #  unfortunately this makes configure run twice, but oh well
  sed -i -e 's/gconftool-2/no/g' configure.ac
  ./configure --prefix=/usr --sysconfdir=/etc \
              --disable-perl --disable-cap \
              --disable-schemas-install \
              --enable-gtkspell --enable-gnutls=yes \
              --enable-nss=no --disable-gevolution \
              --enable-dbus --disable-mono \
              --disable-debug
  make || return 1
  make DESTDIR=${startdir}/pkg install
}