root/branches/gajim_0.7/PKGBUILD

Revision 1001, 0.6 kB (checked in by nk, 4 years ago)

print status on new_user() no matter what status that is

Line 
1# For ArchLinux #
2#################
3
4pkgname=gajim
5pkgver=0.6.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  make DESTDIR=$startdir/pkg install
29}
30md5sums=('03e95969c68ffdbe34f7a4173f8fd4db')
Note: See TracBrowser for help on using the browser.