1 # Maintainer: Emmanuel Gras <gras.emmanuel@gmail.com>
3 pkgname=vim-ipython-git
6 pkgdesc="A two-way integration between Vim and IPython 0.11+ "
8 url="https://github.com/ivanov/vim-ipython"
10 depends=('vim' 'ipython>=0.11' 'pyzmq-git')
12 provides=('vim-ipython')
16 _gitroot=https://github.com/ivanov/vim-ipython
21 msg "Connecting to GIT server...."
23 if [[ -d "$_gitname" ]]; then
24 cd "$_gitname" && git pull origin
25 msg "The local files are updated."
27 git clone "$_gitroot" "$_gitname"
30 msg "GIT checkout done or server timeout"
34 cd "$srcdir/$_gitname"
35 install -D ftplugin/python/ipy.vim $pkgdir/usr/share/vim/vimfiles/ftplugin/python/ipy.vim
39 # vim:set ts=2 sw=2 et: