summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 0488d6aabdb45f0a212206cb8cf0e4747ee3ab50 (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
# Maintainer: wedjat <wedjat@protonmail.com>
# Contributor: Antony Lee <anntzer dot lee at gmail dot com>

pkgname=python-nitime
pkgver=0.7
pkgrel=1
pkgdesc="A library for time-series analysis of neuroscience data."
arch=("x86_64")
url="http://nipy.org/nitime/"
license=('BSD')
depends=('python' 'python-numpy' 'python-matplotlib' 'python-scipy') # ('python-sphinx' 'python-nibabel' 'python-networkx) # building documentation (but did not try so far)
makedepends=('python-setuptools' 'cython')
checkdepends=()
optdepends=('python-nibabel: for reading in data from fMRI data files' 'python-networkx: for some visualization functions')
options=()
source=("$pkgname-$pkgver.tar.gz::https://github.com/nipy/nitime/archive/rel/$pkgver.tar.gz")
md5sums=('6b5896db6b7d65660291640bf4027681')


build() 
{
	cd "$srcdir/nitime-rel-$pkgver"
	python setup.py build

}

package() 
{
	cd "$srcdir/nitime-rel-$pkgver"
	python setup.py install --root="$pkgdir"/ --skip-build --optimize=1

}