2009-01-11 14:27:35 +01:00
|
|
|
# Description: multi-protocol instant messaging client
|
|
|
|
# URL: http://pidgin.im/
|
|
|
|
# Maintainer: Bartlomiej Palmowski, rotwang at crux dot org dot pl
|
|
|
|
# Packager: Simone Rota, sip at crux dot nu
|
2012-07-22 19:24:11 +02:00
|
|
|
# Depends on: intltool gtk xorg-libxscrnsaver startup-notification nss libidn xorg-libxdamage
|
2009-01-11 12:10:43 +01:00
|
|
|
|
|
|
|
name=pidgin
|
2012-07-22 17:36:54 +02:00
|
|
|
version=2.10.6
|
2009-08-20 21:43:49 +02:00
|
|
|
release=1
|
2011-06-30 21:16:30 +02:00
|
|
|
source=(http://downloads.sourceforge.net/project/$name/Pidgin/$version/$name-$version.tar.bz2)
|
2009-01-11 12:10:43 +01:00
|
|
|
|
|
|
|
build () {
|
2009-07-15 20:47:10 +02:00
|
|
|
cd $name-$version
|
2009-01-11 14:27:35 +01:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
2010-02-27 11:09:10 +01:00
|
|
|
--disable-nls \
|
2009-01-11 14:27:35 +01:00
|
|
|
--disable-schemas-install \
|
2012-03-25 17:52:16 +02:00
|
|
|
--disable-meanwhile \
|
2009-01-11 14:27:35 +01:00
|
|
|
--with-nspr-includes=/usr/include/nspr \
|
|
|
|
--with-nss-includes=/usr/include/nss \
|
|
|
|
--with-nspr-libs=/usr/lib \
|
|
|
|
--with-nss-libs=/usr/lib \
|
2012-03-25 17:52:16 +02:00
|
|
|
--disable-tcl \
|
|
|
|
--disable-perl \
|
2009-01-11 14:27:35 +01:00
|
|
|
--disable-gtkspell \
|
2012-03-25 17:52:16 +02:00
|
|
|
--disable-avahi \
|
|
|
|
--disable-dbus \
|
2009-10-19 10:09:22 +02:00
|
|
|
--disable-gstreamer \
|
|
|
|
--disable-vv
|
2009-08-08 22:38:44 +02:00
|
|
|
|
2009-01-11 14:27:35 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2011-06-30 21:16:30 +02:00
|
|
|
find $PKG/usr/lib/ -name '*.la' -delete
|
2010-06-22 18:29:28 +02:00
|
|
|
#rm -rf $PKG/usr/share/locale
|
2010-02-27 18:47:05 +01:00
|
|
|
rm -rf $PKG/usr/etc/gconf || :
|
2009-07-15 20:47:10 +02:00
|
|
|
}
|