#!/bin/bash # Maintainer: PumpkinCheshire pkgname=python-viztracer _name=viztracer pkgver=0.15.0 pkgrel=1 pkgdesc='VizTracer is a low-overhead logging/debugging/profiling tool that can trace and visualize your python code execution.' arch=('x86_64') url="https://github.com/gaogaotiantian/$_name" license=('Apache') depends=('python') makedepends=('python-setuptools') optdepends=( 'python-rich: Full function support' 'python-orjson: Full function support' 'chromium: browser to open html results' ) source=("https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz") b2sums=('c072885e46d22d592144ec9ff09444cea729c71d8383407529b7267a1c2a4114000a9f330b0504342ae871b713a4fe266c124a681bf4dfc79f7651d32319325f') build() { cd "$_name-$pkgver" || exit export PYTHONHASHSEED=0 python setup.py build } package() { cd "$_name-$pkgver" || exit python setup.py install --root="$pkgdir" --optimize=1 --skip-build install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" # install -Dm644 $scrdir/README* "${pkgdir}/usr/share/doc/${pkgname}/README" }