summaryrefslogtreecommitdiffstats
path: root/abs/core/python_modules/python-werkzeug/PKGBUILD
blob: 097022677001a55785e1231571147562101bef29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# $Id$
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: Dan Serban
# Contributor: Richard Murri

pkgname=('python-werkzeug' 'python2-werkzeug')
pkgver=0.14.1
pkgrel=2
pkgdesc='Swiss Army knife of Python web development'
url='http://werkzeug.pocoo.org/'
arch=('any')
license=('custom:BSD')
makedepends=('python-setuptools' 'python2-setuptools' 'python-pytest' 'python2-pytest' 'python-requests' 'python2-requests')
source=("https://github.com/pallets/werkzeug/archive/${pkgver}.tar.gz")
sha512sums=('71ec293b702f247b68bf82b4ff9e4351e21aa1949221c3cba46cd0db3c3f10ca2009029bf26869230ad32cec29109b279876b71f4aa0de64dd6635725c9baecb')

prepare() {
  cp -r "werkzeug-$pkgver" "python-werkzeug-$pkgver"
  cp -r "werkzeug-$pkgver" "python2-werkzeug-$pkgver"
}

build() {
  cd "$srcdir/python-werkzeug-$pkgver"

  python setup.py build

  cd "$srcdir/python2-werkzeug-$pkgver"

  python2 setup.py build
}

# check() {
#   cd "python-werkzeug-$pkgver"
#   python setup.py test
#
#   cd "python2-werkzeug-$pkgver"
#   python2 setup.py test
# }

package_python-werkzeug() {
  depends=('python')
  cd "python-werkzeug-$pkgver"

  python setup.py install --root="$pkgdir" --optimize=1
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

package_python2-werkzeug() {
  depends=('python2')
  cd "python2-werkzeug-$pkgver"

  python2 setup.py install --root="$pkgdir" --optimize=1
  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}

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