1 # Maintainer: vando <facundo@esdebian.org>
6 pkgdesc="A tool for cli to convert rst into website"
8 url="http://frontweb.com.ar/"
10 depends=('django' 'docutils' 'python2' 'python2-distribute' 'yapsy')
11 makedepends=('mercurial')
12 optdepends=('imagemagick: for gallery directive'
13 'python2-pygments: for code-block directive')
15 _hgroot="https://bitbucket.org/hugoruscitti"
20 msg "Preparing for build"
21 rm -rf ${srcdir}/frontweb-build || return 1
22 cp -a ${srcdir}/${_hgrepo} ${srcdir}/frontweb-build || return 1
23 cd ${srcdir}/frontweb-build
25 # Patching for python2
26 sed -i 's/python/python2/' frontweb/comandos.py
28 msg "Starting make..."
29 python2 setup.py install --root=${pkgdir} || return 1