summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 02c2a64def7ecdce2c51fdd162575af9c8993532 (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
pkgname=onnxruntime-lib-git
pkgver=1.12.1
pkgrel=1
pkgdesc="ONNX Runtime: cross-platform, high performance ML inferencing and training accelerator"
arch=('x86_64')
url="https://www.onnxruntime.ai/"
license=('MIT')
groups=()
depends=()
makedepends=()
provides=("onnxruntime")
conflicts=("onnxruntime")
replaces=()
backup=()
options=()
# install=
source=("https://github.com/microsoft/onnxruntime/releases/download/v${pkgver}/onnxruntime-linux-x64-${pkgver}.tgz")
noextract=()
md5sums=('SKIP')

# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for
# a description of each element in the source array.

package() {
    install -D "${srcdir}/onnxruntime-linux-x64-${pkgver}/include"/* -t "${pkgdir}/usr/include"
    install -D "${srcdir}/onnxruntime-linux-x64-${pkgver}/lib"/* -t "${pkgdir}/usr/lib"
}