summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2b7e1b869f4c244ad43a70ec3a3ab79e17a9cc85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Maintainer: Francisco Salces Carcoba <pacosalces@gmail.com>
pkgname=python-pygwinc
_name=pygwinc
pkgver=0.5.0
pkgrel=1
pkgdesc="Gravitational Wave Interferometer Noise Calculator"
license=("Unlicense")
url="https://git.ligo.org/gwinc/pygwinc"
depends=('python-numpy' 'python-scipy' 'python-yaml' 'python-matplotlib')
source=("git+https://git.ligo.org/gwinc/$_name")
sha256sums=('SKIP')
arch=('any')

build() {
	cd $srcdir/${_name}
	python setup.py build
}

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