17 lines
533 B
Plaintext
17 lines
533 B
Plaintext
# Description: Yet another URL library
|
|
# URL: https://github.com/aio-libs/yarl/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-expandvars python3-idna python3-multidict python3-typing_extensions
|
|
|
|
name=python3-yarl
|
|
version=1.9.4
|
|
release=1
|
|
source=(https://github.com/aio-libs/yarl/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd yarl-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|