blob: b3d19ad5bd75d02138eff19c09c0f6af555a370e (
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
|
# Maintainer: Marco Rubin <marco.rubin@protonmail.com>
_name=pystack
pkgname=python-$_name
pkgver=1.5.0
pkgrel=1
pkgdesc='Analysis of the stack of remote python processes'
arch=(any)
url='https://github.com/bloomberg/pystack'
license=('Apache')
depends=(python)
makedepends=(
cython
libelf
python-pkgconfig
python-build
python-installer
python-setuptools
python-wheel
)
source=("$url/archive/v$pkgver.tar.gz")
b2sums=('c51d24b6c8708798593884c290259fd2f2e6cd01dfba7a332de6a14ab13da5c7ef52603fe5395558fa4358504a552d14817a17133141e80ee3384de652684486')
build() {
cd $_name-$pkgver
python -m build --wheel --no-isolation
}
package() {
cd $_name-$pkgver
python -m installer --destdir="$pkgdir" dist/*.whl
}
|