17 lines
556 B
Plaintext
17 lines
556 B
Plaintext
# Description: A portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures
|
|
# URL: https://pypi.org/project/lit/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-lit
|
|
_name=lit
|
|
version=12.0.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${_name:0:1}/$_name/$_name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $_name-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install -O1 --root=$PKG --skip-build
|
|
}
|