forked from ports/contrib
19 lines
518 B
Plaintext
19 lines
518 B
Plaintext
# Description: Utility library for gitignore style pattern matching of file paths
|
|
# URL: https://github.com/cpburnz/python-path-specification
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-pathspec
|
|
version=0.11.1
|
|
release=1
|
|
source=(https://pypi.io/packages/source/p/pathspec/pathspec-$version.tar.gz)
|
|
|
|
build() {
|
|
cd pathspec-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build \
|
|
-O1
|
|
}
|