blob: 5fb5866ba1aa2b47d7f7703245248fd82b764dfa (
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
|
# Maintainer: Butui Hu <hot123tea123@gmail.com>
pkgname=python-onnx
pkgver=1.14.1
pkgrel=1
epoch=1
pkgdesc='Open Neural Network Exchange'
arch=('x86_64')
url='https://onnx.ai'
license=('MIT')
depends=(
protobuf
python-protobuf
python-numpy
python-six
python-typing_extensions
)
makedepends=(
cmake
git
pybind11
python-setuptools
python-pip
)
source=("${pkgname}::git+https://github.com/onnx/onnx.git#tag=v${pkgver}")
sha512sums=('SKIP')
prepare() {
cd "${pkgname}"
git submodule update --init --recursive
# Partial backpart from https://github.com/onnx/onnx/pull/3674
sed -i 's#collections.Iterable#collections.abc.Iterable#g' onnx/helper.py
# bump CMAKE_CXX_STANDARD to 17, see also https://github.com/onnx/onnx/pull/5119
sed -i 's#CMAKE_CXX_STANDARD 11#CMAKE_CXX_STANDARD 17#' CMakeLists.txt
}
build() {
cd "${pkgname}"
python setup.py build
}
package() {
cd "${pkgname}"
python setup.py install --root="${pkgdir}" --optimize=1 --skip-build
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
}
# vim:set ts=2 sw=2 et:
|