summaryrefslogtreecommitdiff
path: root/community/python-statsmodels/PKGBUILD
blob: 3f5f3ecb2923787d155e954a9df05d4d69e75c48 (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
# $Id: PKGBUILD 112901 2014-06-09 12:18:33Z aginiewicz $
# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
# Contributor: Oliver Sherouse <oliver DOT sherouse AT gmail DOT com>

pkgbase=python-statsmodels
pkgname=('python2-statsmodels' 'python-statsmodels')
pkgver=0.5.0
pkgrel=1
pkgdesc="Statistical computations and models for use with SciPy"
arch=('i686' 'x86_64')
url="http://statsmodels.sourceforge.net/"
license=('BSD')
makedepends=('python2-setuptools' 'python2-scipy' 'python2-pandas' 'python2-patsy'
             'python-setuptools' 'python-scipy' 'python-pandas' 'python-patsy' 'cython')
source=("https://pypi.python.org/packages/source/s/statsmodels/statsmodels-${pkgver}.tar.gz")
md5sums=('c65454d97f869ac0e5bb3a2757ec6bd5')

build() {
  cd "$srcdir"
  cp -a statsmodels-${pkgver} statsmodels-py2-${pkgver}

  msg "Building Python2"
  cd "$srcdir"/statsmodels-py2-${pkgver}
  python2 setup.py build

  msg "Building Python3"
  cd "$srcdir"/statsmodels-${pkgver}
  python setup.py clean
  python setup.py build
}

package_python2-statsmodels() {
  depends=('python2-scipy' 'python2-pandas' 'python2-patsy')
  optdepends=('python2-nose: needed for integrated test suite'
              'python2-matplotlib: needed for plotting functions')

  cd "$srcdir"/statsmodels-py2-${pkgver}

  python2 setup.py install --skip-build --root="$pkgdir" --optimize=1

  sed -i -e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" $(find "${pkgdir}" -name '*.py')

  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}

package_python-statsmodels() {
  depends=('python-scipy' 'python-pandas' 'python-patsy')
  optdepends=('python-nose: needed for integrated test suite'
              'python-matplotlib: needed for plotting functions')

  cd "$srcdir"/statsmodels-${pkgver}

  python setup.py install --skip-build --root="$pkgdir" --optimize=1

  install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}