contrib/gping/Pkgfile

19 lines
552 B
Plaintext
Raw Normal View History

2021-09-15 15:46:31 +02:00
# Description: Ping, but with a graph
# URL: https://github.com/orf/gping
2023-05-22 22:23:19 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2021-09-15 15:46:31 +02:00
# Depends on: rust
name=gping
2023-11-30 10:35:46 +01:00
version=1.16.0
2021-09-15 15:46:31 +02:00
release=1
source=(https://github.com/orf/gping/archive/refs/tags/$name-v$version.tar.gz)
build() {
2023-05-22 22:23:19 +02:00
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
[[ ! -e $PKGMK_SOURCE_DIR/rust ]] && mkdir $PKGMK_SOURCE_DIR/rust
2021-09-15 15:46:31 +02:00
2023-05-22 22:23:19 +02:00
cargo build --release --manifest-path $name-$name-v$version/Cargo.toml
2021-09-15 15:46:31 +02:00
2023-05-22 22:23:19 +02:00
install -Dt $PKG/usr/bin $name-$name-v$version/target/release/$name
2021-09-15 15:46:31 +02:00
}