17 lines
572 B
Plaintext
17 lines
572 B
Plaintext
# Description: Unpadded Base64
|
|
# URL: https://pypi.python.org/pypi/unpaddedbase64/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-installer python3-poetry-core python3-wheel
|
|
|
|
name=python3-unpaddedbase64
|
|
version=2.1.0
|
|
release=2
|
|
source=(https://github.com/matrix-org/python-unpaddedbase64/archive/v$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd python-unpaddedbase64-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|