16 lines
470 B
Plaintext
16 lines
470 B
Plaintext
# Description: Backport of pathlib-compatible object wrapper for zip files
|
|
# URL: https://pypi.org/project/zipp/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-zipp
|
|
version=3.1.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/ce/8c/2c5f7dc1b418f659d36c04dec9446612fc7b45c8095cc7369dd772513055/zipp-$version.tar.gz)
|
|
|
|
build() {
|
|
cd zipp-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|