summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fd9ba5b3eba5b4211e70d142a3f016f41d1167d3 (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
# Maintainer: Matthew McGinn <mamcgi@gmail.com>
# Contributor: Stunts <f.pinamartins@gmail.com>

pkgname=python-matplotlib-venn
_upstream_pkgname=matplotlib-venn
pkgver=0.11.6
pkgrel=1
pkgdesc="Functions for plotting area-proportional two- and three-way Venn diagrams in matplotlib"
arch=('any')
url="https://github.com/konstantint/matplotlib-venn"
_github_url="https://github.com/konstantint/matplotlib-venn"
license=('MIT')
depends=('python-numpy' 'python-matplotlib' 'python-scipy')
makedepends=('python-setuptools')
source=("https://github.com/konstantint/${_upstream_pkgname}/archive/${pkgver}.tar.gz")
md5sums=('887dccc5ff8ace3ed3243f62391c346e')

build() {
  cd "${srcdir}/${_upstream_pkgname}-${pkgver}"
  python setup.py build
}

package() {
  cd "${srcdir}/${_upstream_pkgname}-${pkgver}"
  python setup.py install --root="${pkgdir}"
}