summaryrefslogtreecommitdiffstats
path: root/abs/core/python2-contextlib2/PKGBUILD
blob: 43bd8cf24e9557496e0b6fa9e36261a4e298e0bc (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
# $Id$
# Maintainer: Felix Yan <felixonmars@archlinux.org>
# Contributor: Cedric Girard <girard.cedric@gmail.com>

_pypiname=contextlib2
pkgname=python2-contextlib2
pkgver=0.5.5
pkgrel=1
pkgdesc="contextlib2 is a backport of the standard library’s contextlib module to earlier Python versions"
arch=('any')
url="http://pypi.python.org/pypi/${_pypiname}"
license=('PSF')
depends=('python2')
makedepends=('python2-setuptools')
source=("https://pypi.io/packages/source/${_pypiname:0:1}/${_pypiname}/${_pypiname}-$pkgver.tar.gz")
sha512sums=('d5c97ff8eef7d8b14da0bfdc3515f8019bcc05e24cb922ce08ca2366d5182b029d873bbf172e9e6791297df05e24f6faf40868550063dcdb54f451b14c9e505d')

build() {
  cd "${srcdir}/${_pypiname}-$pkgver"
  python2 setup.py build
}

package() {
  cd ${_pypiname}-$pkgver
  python2 setup.py install --root="${pkgdir}"
  install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}