mirror of
https://github.com/luzifer-aur/librespeed-cli.git
synced 2024-11-12 23:32:43 +00:00
24 lines
609 B
Text
24 lines
609 B
Text
|
# Maintainer: Knut Ahlers <knut at ahlers dot me>
|
||
|
|
||
|
pkgname=librespeed-cli
|
||
|
pkgver=1.0.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="Command line client for LibreSpeed"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="https://github.com/librespeed/speedtest-cli"
|
||
|
license=(LGPL)
|
||
|
makedepends=(go)
|
||
|
source=("${pkgname}-${pkgver}::git+${url}.git#tag=v${pkgver}")
|
||
|
sha512sums=('SKIP')
|
||
|
|
||
|
build() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
bash build.sh
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd ${srcdir}/${pkgname}-${pkgver}
|
||
|
install -Dm755 "out/${pkgname}-$(go env GOOS)-$(go env GOARCH)" "${pkgdir}/usr/bin/${pkgname}"
|
||
|
install -Dm644 "LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}"
|
||
|
}
|