updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / frontweb / PKGBUILD
blob75b28b738186fe24f8fc7b9791d1acd8d74d3459
1 # Maintainer: vando <facundo@esdebian.org>
3 pkgname=frontweb
4 pkgver=137
5 pkgrel=1
6 pkgdesc="A tool for cli to convert rst into website"
7 arch=('i686' 'x86_64')
8 url="http://frontweb.com.ar/"
9 license=('GPL3')
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"
16 _hgrepo="frontweb"
18 build() {
19   
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
24   
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
30   
31