blob: 2b9a3c83d0ab26df43e1689724bc0892540001a0 (
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
|
# Maintainer: Chih-Hsuan Yen <yan12125@archlinux.org>
pkgname=netron-cli
pkgver=7.9.5
pkgrel=1
pkgdesc='Visualizer for neural network, deep learning, and machine learning models (CLI only)'
url='https://netron.app/'
arch=(any)
license=(MIT)
depends=(python)
makedepends=(python-setuptools python-build python-installer python-wheel)
optdepends=(
'python-onnx: serializing ONNX models'
'python-pytorch: serializing PyTorch models'
)
source=(https://github.com/lutzroeder/netron/archive/v$pkgver/netron-$pkgver.tar.gz)
sha256sums=('f83c841f9e8913ba31d9612465caef4423d2fdc876a86effc79070fd785e7528')
build() {
cd netron-$pkgver
python package.py build version
python -m build --wheel --no-isolation --outdir dist/pypi dist/pypi
}
package() {
cd netron-$pkgver
python -m installer --destdir="$pkgdir" dist/pypi/*.whl
install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname
}
|