summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7e1433a52fe9a6276e4ae49b8d5f41a9f37d73be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Maintainer: Ross Whitfield <whitfieldre@ornl.gov>
pkgname='python-nexusformat'
_pkgname=nexusformat
pkgver=0.5.2
pkgrel=1
pkgdesc="Provides an API to open, create, and manipulate NeXus data."
url="https://github.com/nexpy/nexusformat"
arch=("any")
license=('BSD')
makedepends=('python-setuptools')
depends=('python-numpy' 'python-h5py')
source=("https://github.com/nexpy/nexusformat/archive/v${pkgver}.tar.gz")
md5sums=('0c3d1b730045e305af63e0cb16063cef')

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