mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-18 20:12:14 +01:00
28 lines
724 B
Plaintext
28 lines
724 B
Plaintext
# Contributor: Luca Weiss <luca@lucaweiss.eu>
|
|
# Maintainer: Martijn Braam <martijn@brixit.nl>
|
|
pkgname=sysls
|
|
pkgver=2
|
|
pkgrel=3
|
|
pkgdesc="Nicer ls for sysfs directories"
|
|
url="https://git.sr.ht/~martijnbraam/sysls"
|
|
arch="all"
|
|
license="GPL-3.0-only"
|
|
makedepends="py3-setuptools py3-gpep517"
|
|
source="sysls-$pkgver.tar.gz::https://git.sr.ht/~martijnbraam/sysls/archive/$pkgver.tar.gz"
|
|
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="
|
|
f99fc36fd42fb044d5d69a17f5fe0d93d8edd1dd0093ee9c5445afa05630b7258a8d50aecbf5cbe2588e00a78152195061d12fc527db25b02284c2507c911aba sysls-2.tar.gz
|
|
"
|