forked from ports/contrib
20 lines
578 B
Plaintext
20 lines
578 B
Plaintext
# Description: supposedly makes exceptions handling and inspection easier
|
|
# URL: https://github.com/sdispater/crashtest
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-dephell python3-yaspin
|
|
|
|
name=python3-crashtest
|
|
version=0.3.1
|
|
release=1
|
|
source=(https://github.com/sdispater/crashtest/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd crashtest-$version
|
|
dephell deps convert --from pyproject.toml --to setup.py
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|