summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4962d01f290424d18ae6d4794554a652065cdc01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Maintainer: gilcu3
# Previous Maintainer: Ben Alex <ben.alex@acegi.com.au>

_pkgname=tflite-runtime
pkgname=python-$_pkgname
pkgver=2.14.0
pkgrel=6
pkgdesc='TensorFlow Lite Python bindings'
arch=('x86_64')
_py=cp311
url='https://www.tensorflow.org/lite/'
license=('Apache')
depends=('python-numpy')
makedepends=('python-installer')
wheel_name=${_pkgname//-/_}-$pkgver-$_py-${_py}-manylinux2014_$arch.whl
source=(https://files.pythonhosted.org/packages/$_py/${_pkgname::1}/$_pkgname/$wheel_name)
sha256sums=('195ab752e7e57329a68e54dd3dd5439fad888b9bff1be0f0dc042a3237a90e4d')

package() {
  python -m installer --destdir="$pkgdir" $wheel_name
}