blob: 6c6195899511bb6a127c13fa1d4a8a78ab4bc59b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#Submiter: Hector Mtz-Seara (hseara#at#gmail#com)
pkgname=python-gsd
pkgver=3.2.1
pkgrel=1
pkgdesc="GSD files store trajectories of the HOOMD-blue system state in a binary file with efficient random access to frames and allows all particle and topology properties to vary from one frame to the next."
url="https://github.com/glotzerlab/gsd/"
license=("BSD")
arch=('x86_64')
depends=('cython' 'python-numpy')
source=(https://github.com/glotzerlab/gsd/archive/v$pkgver.tar.gz)
sha256sums=('de6832e7fd063a5e0fcdd9f78fdb627843ea73218473e876f3e8256ab773f37b')
build() {
cd $srcdir/gsd-$pkgver/
python setup.py build
}
package(){
cd $srcdir/gsd-$pkgver/
python setup.py install --root=$pkgdir --optimize=1
}
|