1 # Maintainer: Clément Démoulins <clement@archivel.fr>
6 pkgdesc="easy to use interface to thetvdb.com"
8 url="http://github.com/dbr/tvdb_api/"
11 makedepends=('git' 'python2' 'setuptools')
13 conflicts=('tvdb_api')
16 _gitroot="git://github.com/dbr/tvdb_api.git"
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"
31 msg "Starting make..."
33 rm -rf "$srcdir/$_gitname-build"
34 git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
35 cd "$srcdir/$_gitname-build"
37 python2 setup.py install --root=$pkgdir/ --optimize=1 || return 1