1 # Contributor: Elena ``of Valhalla'' Grandi <elena.valhalla@gmail.com>
5 pkgdesc="A distributed bugtracker"
7 url="http://bugseverywhere.org/be"
9 depends=('python2' 'python2-yaml')
10 makedepends=('python-sphinx' 'python-numpydoc')
11 optdepends=('cherrypy: web interface')
12 provides=('bugseverywhere')
13 conflicts=('bugseverywhere-git' 'bugseverywhere-bzr')
17 source=(http://download.bugseverywhere.org/releases/be-$pkgver.tar.gz)
19 md5sums=('6279998b0d6c1068f91330cec69105c9') #generate with 'makepkg -g'
23 cd "$srcdir/be-$pkgver"
25 python2 setup.py install --root=$pkgdir/ --optimize=1
27 # Build html documentation
28 sed -i 's/python /python2 /' doc/Makefile
31 install -d $pkgdir/usr/share/doc/bugseverywhere
32 cp -r doc/.build/html/* $pkgdir/usr/share/doc/bugseverywhere/
36 # vim:set ts=2 sw=2 et: