Skip to content
Snippets Groups Projects
PKGBUILD 663 B
Newer Older
nkour's avatar
nkour committed
# For ArchLinux #
#################

pkgname=gajim
nkour's avatar
nkour committed
pkgver=0.7.1
nkour's avatar
nkour committed
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."

nkour's avatar
nkour committed
  echo "making gtkspell..."
  make gtkspell || return 1
  echo "done."

nkour's avatar
nkour committed
  make DESTDIR=$startdir/pkg install
}
nkour's avatar
nkour committed
#md5sums=('')