summaryrefslogtreecommitdiff
path: root/xraylarch/PKGBUILD
blob: ddc91169dd7d7d31a5b1e8f4a0dbdd4a23d99cf7 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=xraylarch
pkgver=0.9.42
pkgrel=1
pkgdesc="Data Analysis Tools for X-ray Spectroscopy"
arch=('i686' 'pentium4' 'x86_64')
url="http://xraypy.github.io/xraylarch/"
license=('BSD')
groups=()
depends=(
  'python2>=2.7'
  'python2<2.8'
  'python2-asteval>=0.9.12'
  'python2-backports.functools_lru_cache'
  'python2-epics>=3.2.4'
  'python2-h5py>=2.4'
  'python2-lmfit>=0.9.11'
  'python2-matplotlib>=2.0'
  'python2-numpy>=1.10'
  'python2-peakutils>=1.0.0'
  'python2-pillow>=3.4'
  'python2-psutil'
  'python2-pyfai>=0.12.0'
  'python2-pyaml'
  'python2-pyshortcuts'
  'python2-requests>=2.1'
  'python2-scikit-learn>=0.18'
  'python2-scipy>=0.17'
  'python2-silx'
  'python2-six>=1.10'
  'python2-sqlalchemy>=1.1.5'
  'python2-termcolor'
  'python2-uncertainties>=3.0'
  'python2-wxpython3>=2.8.12'
  'python2-wxutils'
  'python2-wxmplot'
)
makedepends=()
checkdepends=(
  'python2-pytest'
)
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-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=('22b0ae361f26e9044bddd5082c5a1355858797bcd4fde3f58bbef862d9fece5fb93fec416a27468033e313409559edbfb5007eb7744e9a456e3a75606dbf3814')

prepare() {

  sed -i '
    /^\s*pyexe\s*=/ s/python/python2/
    s/^\s*setup(/_setup = \0/
    s/^\(\s*dest\s*=\s*\)\(\S.*\)$/\1_setup.get_command_obj('"'"'install'"'"').root + os.path.abspath(\2)/
    /subprocess\.check_call/ { N; d; }
  ' "${pkgname}-${pkgver}/setup.py"

  if [ "${CARCH}" = 'i686' ] || [ "${CARCH}" = 'pentium4' ]; then
    sed -i '
      /^\s*compiled_exes\s*=\s*(/,/)/ {
        s/(.*/(/
        t
        s/.*)/)/
        t
        d
      }
    ' "${pkgname}-${pkgver}/setup.py"
  fi

}

build() {

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

}

check() {

  cd "${pkgname}-${pkgver}"
  python2 setup.py check

}

package() {

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

}