mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
33 lines
898 B
Text
33 lines
898 B
Text
# Maintainer: Marian Buschsieweke <marian.buschsieweke@posteo.net>
|
|
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-euclid3
|
|
pkgver=0.01
|
|
pkgrel=8
|
|
pkgdesc="Vector, matrix, quaternion and some geometry in 2D and 3D for Python 3"
|
|
url="https://github.com/euclid3/euclid3"
|
|
arch="noarch"
|
|
license="LGPL-2.1-or-later"
|
|
depends="python3"
|
|
makedepends="
|
|
py3-setuptools
|
|
py3-gpep517
|
|
"
|
|
subpackages="$pkgname-pyc"
|
|
source="https://files.pythonhosted.org/packages/source/e/euclid3/euclid3-$pkgver.tar.gz"
|
|
builddir="$srcdir/euclid3-$pkgver"
|
|
options="!check" # no tests
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
gpep517 install-wheel --destdir "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
c4e5e2770ab4ede08904fc3b76e50d6812944ed226c9db52f2da8d100370e20ea6031ca554ae44d72d53e96727d163bd3cc8da7bf175539de10749da77877b0b euclid3-0.01.tar.gz
|
|
"
|