blob: 6a49bb0127dc4ab73898cd45fc4671ce3c6d2897 (
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=8.2.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=('9349d2e989046649249f1bfb86ddc95bb973305e89c8018ae95f2331b61be21a')
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
}
|