summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 2b6e2acac61e054d0d07da6b5c6a29d8601f4f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer:  Dimitris Kiziridis <ragouel at outlook dot com>

pkgname=python-questplus
pkgver=2019.4
pkgrel=1
pkgdesc='This is a simple implementation of the QUEST+ algorithm in Python'
arch=('any')
url="https://github.com/hoechenberger/questplus"
license=('GPL3')
depends=('python'
         'python-json-tricks'
         'python-scipy'
         'python-xarray')
makedepends=('python-setuptools')
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/hoechenberger/questplus/archive/${pkgver}.tar.gz")
sha256sums=('61cffe0950db5d76c75ee9d39d94cdbdac4d7eef675b55b4a0cc30e380ecbfec')

package() {
  cd "${srcdir}/questplus-${pkgver}"
  python setup.py install --root="$pkgdir/" --optimize=1
}