summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 07184c5697f621fae27e22bc6abac2dd4a33ffc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: nblock <nblock [/at\] archlinux DOT us>
# Contributor: mitsuse <mitsuse at gmail>

pkgname=python2-wtforms
pkgver=2.1
pkgrel=1
pkgdesc='A flexible forms validation and rendering library for python web development.'
arch=('any')
url="http://pypi.python.org/pypi/WTForms"
license=('BSD')
depends=('python2')
makedepends=('unzip' 'python2-distribute')
source=("http://pypi.python.org/packages/source/W/WTForms/WTForms-${pkgver}.zip")
md5sums=('6938a541fafd1a1ae2f6b9b88588eef2')

package() {
    cd ${srcdir}/WTForms-${pkgver}
    python2 setup.py install --root=${pkgdir}/ --optimize=1
}

# vim:set ts=2 sw=2 et: