1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-24 19:55:26 +03:00
aports/testing/py3-doit/APKBUILD
2021-04-05 18:19:19 +00:00

29 lines
963 B
Text

# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py3-doit
_pkgname=doit
pkgver=0.33.1
pkgrel=1
pkgdesc="A Python Automation Tool"
url="https://pydoit.org/"
# aarch64: Fails to find py3-inotify
# mips64: Fails to find py3-cloudpickle
arch="noarch !aarch64 !mips64"
license="MIT"
depends="py3-cloudpickle py3-inotify py3-six"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
builddir="$srcdir"/$_pkgname-$pkgver
replaces="py-doit" # Backwards compatibility
provides="py-doit=$pkgver-r$pkgrel" # Backwards compatibility
build() {
python3 setup.py build
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="852efa3b770ec5de7def1fad1167b8cdce1de7435b2ba5e4af43a84c84df0cbf960d8d5c4c9f526f303d19c7536f745c2c7700daaced984ec86fb4202f894170 doit-0.33.1.tar.gz"