gajim-plural/PKGBUILD

35 lines
694 B
Bash
Raw Normal View History

2005-03-22 15:09:21 +01:00
# For ArchLinux #
#################
pkgname=gajim
2005-06-04 18:06:55 +02:00
pkgver=0.7.1
2005-03-22 15:09:21 +01:00
pkgrel=1
pkgdesc="Gajim is a GTK Jabber client"
url="http://www.gajim.org"
license="GPL"
depends=(pygtk)
source=($url/downloads/$pkgname-$pkgver.tar.bz2)
build() {
cd $startdir/src/$pkgname-$pkgver
echo "making trayicon..."
make trayicon || return 1 #remove this if you have gnome-python-extras
echo "done."
echo "making idle detection..."
make idle || return 1
echo "done."
echo "making translations..."
make translation || return 1
echo "done."
2005-06-04 18:06:55 +02:00
echo "making gtkspell..."
make gtkspell || return 1
echo "done."
2005-03-22 15:09:21 +01:00
make DESTDIR=$startdir/pkg install
}
md5sums=('f795d550749d78839d1b6a554bbff545')