2022-01-03 12:07:51 +01:00
|
|
|
# Description: Linter for YAML files
|
|
|
|
# URL: https://github.com/adrienverge/yamllint
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: python3-pathspec python3-yaml
|
|
|
|
|
|
|
|
name=yamllint
|
2024-02-15 18:07:37 +01:00
|
|
|
version=1.35.0
|
2022-01-03 12:07:51 +01:00
|
|
|
release=1
|
|
|
|
source=(https://files.pythonhosted.org/packages/source/y/yamllint/yamllint-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd yamllint-$version
|
2023-04-22 10:40:30 +02:00
|
|
|
|
2022-01-03 12:07:51 +01:00
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
|
|
--root=$PKG \
|
|
|
|
--skip-build \
|
|
|
|
-O1
|
|
|
|
}
|