summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 09b3992a794dacd37c4ea8b600573c713873649e (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
# $Id$
# Maintainer: Shane Stone <shanewstone at gmail>

pkgbase=python-spiceypy
pkgname=('python-spiceypy' 'python2-spiceypy')
pkgver=2.0.0
pkgrel=1
pkgdesc="A Python wrapper for the NAIF C SPICE Toolkit (N66) written using ctypes."
arch=('any')
url="https://github.com/AndrewAnnex/SpiceyPy"
license=('MIT')
makedepends=('python-six>=1.9.0' 'python2-six>=1.9.0' 'python-numpy>=1.8.0' 'python2-numpy>=1.8.0' 'python-setuptools' 'python2-setuptools')
source=("https://github.com/andrewannex/spiceypy/archive/v${pkgver}.tar.gz")
md5sums=('7115d8c054e46b21c85863bd42de0a3d')

prepare() {
  cp -a SpiceyPy-${pkgver} SpiceyPy-py2-${pkgver}
  cd SpiceyPy-py2-$pkgver

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

build_python2-spiceypy() {
  cd "$srcdir"

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

build_python-spiceypy() {
  cd "$srcdir"

  echo "Building Python3"
  cd "$srcdir"/SpiceyPy-${pkgver}
  python setup.py build
}

package_python2-spiceypy() {
  depends=('python2-six>=1.9.0' 'python2-numpy>=1.8.0')
  optdepends=('python2-pytest>=2.9.0: testing')

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

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

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

package_python-spiceypy() {
  depends=('python-six>=1.9.0' 'python-numpy>=1.8.0')
  optdepends=('python-pytest>=2.9.0: testing')

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

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

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