summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1e4dba208756f73d50e38b9d501535834af6a135 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Maintainer: AndrĂ¡s Wacha <awacha@gmail.com>
pkgname=python-bumps
_name=${pkgname#python-}
pkgver=0.7.11
pkgrel=1
pkgdesc="Data fitting with uncertainty analysis"
arch=(any)
url="https://github.com/bumps/bumps"
license=('custom')
makedepends=( python-setuptools 
              python-sphinx 
              python-nose 
              python-docutils
              python-pygments
              'python-jinja>=2'
)
depends=( python-numpy
	  python-scipy
          python-matplotlib
	  python-wxpython
          python-pyparsing
          python-periodictable
          python-scikit-learn
)
source=("https://github.com/${_name}/${_name}/archive/v${pkgver}.tar.gz" 
	"bumps.patch")
sha256sums=('f0c368d7beb4307297fb5298658921941a80c21e7bc52fb5dab1a1d1ef16d250'
	    'SKIP')

prepare() {
	cd ${_name}-${pkgver}
	patch -p1 <../bumps.patch
}

build() {
	cd ${_name}-${pkgver}
	python setup.py build
	(cd bumps/dream && cc compiled.c -I ../../Random123/include/ -O2 -fopenmp -shared -lm -o _compiled.so -fPIC )
        (cd doc && make html)
	(cd doc && make pdf)
}

check() {
	cd ${_name}-${pkgver}
#	python test.py
}

package() {
	cd ${_name}-${pkgver}
	python setup.py install --root="$pkgdir/" --optimize=1 --skip-build
	mkdir -p ${pkgdir}/usr/share/licenses/python-bumps
	cp ${srcdir}/${_name}-${pkgver}/LICENSE.txt ${pkgdir}/usr/share/licenses/python-bumps/license.txt
	mkdir -p ${pkgdir}/usr/share/doc/python-bumps
	cp ${srcdir}/${_name}-${pkgver}/doc/_build/html ${pkgdir}/usr/share/doc/python-bumps -R
}