|
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 | |
|---|
| 4 | pkgname=gajim |
|---|
| 5 | pkgver=0.6.1 |
|---|
| 6 | pkgrel=1 |
|---|
| 7 | pkgdesc="Gajim is a GTK Jabber client" |
|---|
| 8 | url="http://www.gajim.org" |
|---|
| 9 | license="GPL" |
|---|
| 10 | depends=(pygtk) |
|---|
| 11 | source=($url/downloads/$pkgname-$pkgver.tar.bz2) |
|---|
| 12 | |
|---|
| 13 | build() { |
|---|
| 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 | } |
|---|
| 30 | md5sums=('03e95969c68ffdbe34f7a4173f8fd4db') |
|---|