blob: d97aa864dc7333ff821222ee2a131911fa543323 (
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
|
#!/bin/bash
# Maintainer: PumpkinCheshire <me at pumpkincheshire dot com>
pkgname=python-viztracer
_name=viztracer
pkgver=0.14.4
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=('b46bc54d9ab74b8b8f1e96de4512f8583c46b51699f968971152b3af604efa67fc3eb99cb6618cc961aac7998bc3a506286dfc842896bbca91e3ca3fd654f41b')
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"
}
|