mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
516 B
Bash
23 lines
516 B
Bash
|
# Contributer: Richard Murri <admin@richardmurri.com>
|
||
|
|
||
|
plugrel=1
|
||
|
|
||
|
pkgname=python-werkzeug
|
||
|
pkgver=0.6.2
|
||
|
pkgrel=2
|
||
|
pkgdesc="The Swiss Army knife of Python web development"
|
||
|
arch=(any)
|
||
|
url="http://werkzeug.pocoo.org/"
|
||
|
license=('BSD')
|
||
|
depends=('python2>=2.4')
|
||
|
makedepends=('setuptools')
|
||
|
source=(http://pypi.python.org/packages/source/W/Werkzeug/Werkzeug-$pkgver.tar.gz)
|
||
|
md5sums=('519408350346a247333bb5d584371724')
|
||
|
|
||
|
build() {
|
||
|
cd Werkzeug-$pkgver
|
||
|
python2 ./setup.py install --root=$pkgdir --prefix=/usr || return 1
|
||
|
}
|
||
|
|
||
|
|