mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-12 19:36:48 +02:00
28 lines
785 B
Text
28 lines
785 B
Text
maintainer="Hoang Nguyen <folliekazetani@protonmail.com>"
|
|
pkgname=dooit-extras
|
|
pkgver=0.2.0
|
|
pkgrel=0
|
|
pkgdesc="Collection of utilities to customize dooit"
|
|
url="https://dooit-org.github.io/dooit-extras"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3 dooit"
|
|
makedepends="py3-gpep517 py3-poetry-core"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/dooit-org/dooit-extras/archive/refs/tags/v$pkgver.tar.gz"
|
|
options="!check" # no testsuite
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="
|
|
1aa01780a4ec01cf95cf8d273fc0488605f9bae9b34344f5cf8680ff5898f7b908c54914a11d37b1a8f52846779b2cb4fc5e87265165cef631064b3399803a79 dooit-extras-0.2.0.tar.gz
|
|
"
|