blob: 2bae94769919ee343dbfc4485bf36dd4ed914203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Per Osbeck <per@osbeck.com>
pkgname=globalping-cli
pkgver=1.4.4
pkgrel=1
pkgdesc="Better understand your network routing, fix anycast issues, monitor your CDN and DNS performance, do uptime monitoring and build your own network tools for personal or public use."
arch=(x86_64)
url="https://github.com/jsdelivr/globalping-cli"
license=('Mozilla Public License 2.0')
makedepends=('git' 'go')
source=("$pkgname::git+https://github.com/jsdelivr/$pkgname.git#tag=v$pkgver")
sha256sums=(SKIP)
build() {
cd "$pkgname"
go mod tidy
CGO_ENABLED=0 go build -v
go clean -modcache
}
package() {
install -Dm644 ${pkgname}/LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
install -Dm755 "$pkgname/$pkgname" "$pkgdir/usr/bin/globalping"
}
|