updated on Tue Jan 17 12:00:36 UTC 2012
[aur-mirror.git] / gnome-shell-extension-ibus-panel / PKGBUILD
blobd5a3dcbb6be2d5d0e81d0c5562eccebdddbc5a58
1 # Maintainer: Jekyll Wu<adaptee [at] gmail [dot com>
3 pkgname=gnome-shell-extension-ibus-panel
4 pkgver=20110710
5 pkgrel=1
6 pkgdesc="A Gnome Shell extension for ibus panel "
7 arch=('i686' 'x86_64')
8 url="https://github.com/tigersoldier/Gnome-Shell-IM-Panel"
9 license=('GPL')
10 depends=('ibus-git')
11 makedepends=('git')
12 conflicts=('ibus-gjs-git')
14 _gitroot="git://github.com/tigersoldier/Gnome-Shell-IM-Panel"
15 _gitname="Gnome-Shell-IM-Panel"
17 _uuid="gjsimp@tigersoldier"
19 build() {
20   cd "$srcdir"
21   msg "Connecting to GIT server...."
23   if [ -d $_gitname ] ; then
24     cd $_gitname && git pull origin
25     msg "The local files are updated."
26   else
27     git clone $_gitroot $_gitname
28   fi
30   msg "GIT checkout done or server timeout"
31   msg "Starting make..."
33   rm -rf "$srcdir/$_uuid"
34   git clone "$srcdir/$_gitname" "$srcdir/$_uuid"
35   cd "$srcdir/$_uuid"
37   # you do not want to include .git directory in the package
38   rm ./.git -rf
41 package() {
42   cd "$srcdir"
43   install -d "$pkgdir/usr/share/gnome-shell/extensions/"
44   cp -r "$_uuid"  "$pkgdir/usr/share/gnome-shell/extensions/"
45