1 # Maintainer : Jekyll Wu <adaptee [at] gmail [dot] com>
6 pkgdesc="GNOME-Shell GJS Plugin for IBus"
9 url="http://ibus.googlecode.com"
10 depends=( 'ibus-git' 'gnome-shell' 'gjs' )
11 makedepends=('git' 'intltool')
14 _gitroot="git://github.com/fujiwarat/ibus-gjs"
19 msg "Connecting to ${_gitname} GIT server..."
20 if [ -d ${_gitname} ]; then
21 cd ${_gitname} && git pull origin master
22 msg "The local files are updated."
24 git clone ${_gitroot} ${_gitname}
27 msg "GIT checkout done or server timeout. Preparing sources..."
28 rm -rf "${srcdir}/${_gitname}-build"
29 cp -r "${srcdir}/${_gitname}" "${srcdir}/${_gitname}-build"
30 cd "${srcdir}/${_gitname}-build"
32 msg "Starting make..."
35 ./configure --prefix=/usr
40 cd "${srcdir}/${_gitname}-build"
41 make DESTDIR=${pkgdir} install
44 # vim:set ts=2 sw=2 et: