summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2b89a5f7bce6a3fd929507be6152b6aaa5f1d325 (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
# Maintainer: Will Handley <wh260@cam.ac.uk> (aur.archlinux.org/account/wjhandley)
_modulename=getdist
pkgname=python-$_modulename
pkgver=1.3.3
pkgrel=1
pkgdesc="MCMC sample analysis, kernel densities, plotting, and GUI"
arch=(any)
url="https://github.com/cmbant/getdist"
license=()
groups=()
depends=('python-numpy' 'python-matplotlib' 'python-six' 'python-scipy' 'python-pyside2' 'python-pandas')
makedepends=('python-setuptools')
provides=()
conflicts=()
replaces=()
backup=()
options=(!emptydirs)
install=
source=("${url}/archive/${pkgver}.tar.gz")
sha256sums=('6c3a28850c0c4c320928724f1a75066dcac5266b6192e5cf55b7f874d0413d42')
build() {
  cd "$srcdir/$_modulename-$pkgver/"
  python setup.py build
}
package() {
  cd "$srcdir/$_modulename-$pkgver/"
  python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
}