updated on Wed Jan 25 20:08:56 UTC 2012
[aur-mirror.git] / libpurple-minimal / PKGBUILD
blob55a855ef70804e2f821ed2236a3f2692ef363e03
1 # Maintainer: Magicking <syllaur@gmail.com>
2 # Contributors: wzff BluePeppers n0nsense
3 pkgname=libpurple-minimal
4 pkgver=2.10.1
5 pkgrel=1
6 pkgdesc="minimal build of the pidgin IM library (no gstreamer, perl and X11 dependencies)"
7 arch=('i686' 'x86_64')
8 url="http://developer.pidgin.im/wiki/WhatIsLibpurple"
9 license=('GPL')
10 depends=('glib2' 'gnutls' 'libxml2' 'libidn' 'nss')
11 makedepends=('make' 'intltool')
12 conflicts=('gaim' 'pidgin' 'libpurple')
13 provides=("libpurple=${pkgver}")
14 source="http://downloads.sourceforge.net/pidgin/pidgin-${pkgver}.tar.gz"
15 md5sums=('0e2ee8f44d6621e5adb3a7e50281d14b')
17 build(){
18         cd $srcdir/pidgin-${pkgver}
19         ./configure --prefix=/usr \
20                     --sysconfdir=/etc \
21                     --disable-perl \
22                     --disable-gtkui \
23                     --disable-consoleui \
24                     --disable-sm \
25                     --disable-gestures \
26                     --disable-screensaver \
27                     --disable-startup-notification \
28                     --disable-schemas-install \
29                     --disable-tcl \
30                     --disable-tk \
31                     --disable-nls \
32                     --without-x \
33                     --disable-vv \
34                     --disable-gstreamer \
35                     --disable-meanwhile \
36                     --disable-avahi \
37                     --disable-dbus \
38                     --disable-doxygen || return 1
39         make -C libpurple
42 package() {
43         cd $srcdir/pidgin-${pkgver}
44         make -C libpurple DESTDIR=$pkgdir install