forked from ports/contrib
34 lines
952 B
Plaintext
34 lines
952 B
Plaintext
# 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
|
|
# Depends on: intltool gtk xorg-libxscrnsaver startup-notification nss
|
|
# Nice to have: gst-plugins-base
|
|
|
|
name=pidgin
|
|
version=2.5.8
|
|
release=3
|
|
source=(http://sourceforge.net/projects/$name/files/Pidgin/$name-$version.tar.bz2)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
./configure --prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--disable-schemas-install \
|
|
--disable-meanwhile \
|
|
--with-nspr-includes=/usr/include/nspr \
|
|
--with-nss-includes=/usr/include/nss \
|
|
--with-nspr-libs=/usr/lib \
|
|
--with-nss-libs=/usr/lib \
|
|
--disable-tcl \
|
|
--disable-perl \
|
|
--disable-gtkspell \
|
|
--disable-avahi \
|
|
--disable-dbus \
|
|
--disable-gstreamer
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -rf $PKG/usr/share/locale
|
|
}
|