#Maintainer (AUR): ParadoxSpiral #Contributor (AUR): Cilyan Olowen #Contributor (AUR): Nathan Jones # Maintainer: Omar Vega Ramos pkgname=python2-webhelpers pkgver=1.3 pkgrel=4 pkgdesc="A library of helper functions to make writing templates in web applications easier" depends=('python2') makedepends=('python2-setuptools') conflicts=('python-webhelpers') source=("https://pypi.python.org/packages/source/W/WebHelpers/WebHelpers-$pkgver.tar.gz") url="https://pypi.python.org/pypi/WebHelpers/1.3" license=('BSD') arch=('any') md5sums=('32749ffadfc40fea51075a7def32588b') package() { cd $srcdir/WebHelpers-$pkgver python2 setup.py install --root=$pkgdir/ --optimize=1 install -Dm644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \ -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \ $(find $pkgdir -name '*.py') }