blob: 11bc9735c3c72e3b3533ea1c283f942b4494638d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: Mateen Ulhaq <mulhaq2005+aur at gmail dot com>
pkgname=gping-git
pkgver=v0.1.5.r1.g7e8b360
pkgrel=1
pkgdesc="Ping, but with a graph"
arch=("x86_64")
url="https://github.com/orf/gping"
license=("MIT")
depends=("gcc-libs")
makedepends=("cargo" "git")
provides=("gping")
conflicts=("gping")
source=("$pkgname::git+https://github.com/orf/gping")
sha256sums=("SKIP")
pkgver() {
cd "$pkgname"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "$pkgname"
cargo build --release
}
package() {
cd "$pkgname"
install -Dm755 "target/release/gping" "$pkgdir/usr/bin/gping"
# install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/gping/LICENSE"
install -Dm644 "readme.md" "$pkgdir/usr/share/doc/gping/README.md"
}
|