mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-31 21:41:44 +01:00
27 lines
788 B
Plaintext
27 lines
788 B
Plaintext
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
|
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=speedtest-cli
|
|
pkgver=2.1.3
|
|
pkgrel=1
|
|
pkgdesc="Command line interface for testing internet bandwidth using speedtest.net"
|
|
url="https://github.com/sivel/speedtest-cli"
|
|
arch="noarch"
|
|
license="Apache-2.0"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/sivel/speedtest-cli/archive/v$pkgver.tar.gz"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="e2ecd9b4eea95e3641045c3da217ec5a39846b26c1f773fdd31c6ffe3cb5e35341320fc1992f865af48afd1a704c4d4224f9ec4048abb69131ee2f32385ae94c speedtest-cli-2.1.3.tar.gz"
|