blob: dbeac9143cab1e2aaf9f1bea3be152b713a4cee3 (
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
|
# Maintainer: acxz <akashpatel2008 at yahoo dot com>
pkgname=python-gpytorch-git
pkgver=r2694.bd9a8b27
pkgrel=1
pkgdesc='A highly efficient and modular implementation of GPs, with GPU
acceleration. Implemented in PyTorch.'
arch=('x86_64')
url='https://gpytorch.ai'
license=('MIT')
depends=('python' 'python-pytorch')
optdepends=()
makedepends=('python' 'python-setuptools')
provides=('python-gpytorch')
conflicts=('python-gpytorch')
_pkgname=gpytorch
source=("$_pkgname::git+https://github.com/cornellius-gp/gpytorch")
sha256sums=('SKIP')
pkgver() {
cd "$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${srcdir}/${_pkgname}"
python setup.py build
}
package() {
cd "${srcdir}/${_pkgname}"
python setup.py install --root="$pkgdir"/ --optimize=1
}
|