summaryrefslogtreecommitdiff
path: root/xraylarch/PKGBUILD
blob: 33e6bf6b14532026bcab0a33343a35c54e5079dc (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
56
57
58
59
60
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=xraylarch
pkgver=0.9.32
pkgrel=2
pkgdesc="Data Analysis Tools for X-ray Spectroscopy"
arch=('any')
url="http://xraypy.github.io/xraylarch/"
license=('BSD')
groups=()
depends=(
  'python2'
  'python2-h5py'
  'python2-lmfit'
  'python2-matplotlib'
  'python2-numpy'
  'python2-pillow'
  'python2-scipy'
  'python2-sqlalchemy'
  'python2-wxutils'
  'python2-wxmplot'
  'wxpython'
)
makedepends=()
checkdepends=()
optdepends=(
  'python2-CifFile:        needed for xrd modules'
  'python2-epics:          needed for using the EPICS control system'
  'python2-fabio:          needed for xrd modules'
  'python2-nose:           needed for testing tools'
  'python2-pyFAI:          needed for xrd modules'
  'python2-requests:       needed for graphics, plotting and xrd modules'
  'python2-termcolor:      needed for color-enhanced error messages'
  'python2-xrayutilities:  needed for xrd modules'
  'python2-yaml:           needed for graphics and plotting'
)
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=(
    "${pkgname}-${pkgver}.tar.gz::https://github.com/xraypy/${pkgname}/archive/${pkgver}.tar.gz"
)
sha512sums=('5f646dafe486a1f929991f376345ef033bef1c2c8cb4613eba63e466a416c93e9c9599857406c78da88df658563fdfa83e183d2819acaa875daed1a10c138b9e')

build() {

    cd ${pkgname}-${pkgver}
#    sed "s|DEBUG = False|DEBUG = True|" -i setup.py
    python2 setup.py build

}

package() {

    cd ${pkgname}-${pkgver}
    python2 setup.py install --skip-build --root="${pkgdir}" --prefix=/usr
    sed "s| python\$| python2|" -i $pkgdir/usr/bin/*

}