mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
31 lines
870 B
Text
31 lines
870 B
Text
# Maintainer: psykose <alice@ayaya.dev>
|
|
pkgname=py3-pytweening
|
|
pkgver=1.0.4
|
|
# no actual tags
|
|
_gitrev=7f849783189812f11acd1550b69452c5ce4769b1
|
|
pkgrel=1
|
|
pkgdesc="Set of tweening / easing functions implemented in Python"
|
|
url="https://github.com/asweigart/pytweening"
|
|
arch="noarch"
|
|
license="GPL-3.0-or-later"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$_gitrev.tar.gz::https://github.com/asweigart/pytweening/archive/$_gitrev.tar.gz"
|
|
builddir="$srcdir/pytweening-$_gitrev"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
PYTHONPATH="$PWD" \
|
|
python3 tests/basicTests.py
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
66ce7a7fd2d584c31b884ecdafdbabc889a7e03c7e1206fbb2d87db9b7e183bec46bef424b1c10a7f584dcc0f63244958b1a0f613ca8cb4ddd506d65b9940be3 py3-pytweening-7f849783189812f11acd1550b69452c5ce4769b1.tar.gz
|
|
"
|