blob: 419e76f4506655b80ae59c35777f9394bb526774 (
plain)
1 # Description: A multi-protocol instant messaging client
2 # URL: http://pidgin.im/
3 # Maintainer: Simone Rota, sip at crux dot nu
4 # Depends on: nss, startup-notification, p5-xml-parser, gtk
5
6 name=pidgin
7 version=2.4.0
8 release=1
9 source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.bz2)
10
11 build () {
12 cd pidgin-$version
13 sed -i -e 's/x$GCONFTOOL/xno/' configure
14 ./configure --prefix=/usr \
15 --mandir=/usr/man \
16 --disable-perl \
17 --disable-nls \
18 --disable-gnutls \
19 --with-nspr-includes=/usr/include/nspr \
20 --with-nss-includes=/usr/include/nss \
21 --with-nspr-libs=/usr/lib \
22 --with-nss-libs=/usr/lib \
23 --disable-gevolution \
24 --disable-dbus \
25 --disable-gstreamer \
26 --with-dynamic-prpls="gg,irc,jabber,msn,novell,oscar,qq,sametime,silc,simple,yahoo,zephyr"
27 make
28 make DESTDIR=$PKG install
29 rm -rf $PKG/usr/share/locale
30 }
|