root/branches/gajim_0.8/PKGBUILD

Revision 1839, 0.7 kB (checked in by nk, 3 years ago)

PKGBUILD updated to have the new md5sum

Line 
1# For ArchLinux #
2#################
3
4pkgname=gajim
5pkgver=0.7.1
6pkgrel=1
7pkgdesc="Gajim is a GTK Jabber client"
8url="http://www.gajim.org"
9license="GPL"
10depends=(pygtk)
11source=($url/downloads/$pkgname-$pkgver.tar.bz2)
12
13build() {
14  cd $startdir/src/$pkgname-$pkgver
15
16  echo "making trayicon..."
17  make trayicon || return 1 #remove this if you have gnome-python-extras
18  echo "done."
19 
20  echo "making idle detection..."
21  make idle || return 1
22  echo "done."
23
24  echo "making translations..."
25  make translation || return 1
26  echo "done."
27
28  echo "making gtkspell..."
29  make gtkspell || return 1
30  echo "done."
31
32  make DESTDIR=$startdir/pkg install
33}
34md5sums=('f795d550749d78839d1b6a554bbff545')
Note: See TracBrowser for help on using the browser.