contrib/bandwhich/Pkgfile

21 lines
677 B
Plaintext
Raw Normal View History

# Description: Terminal bandwidth utilization tool
# URL: https://github.com/imsnif/bandwhich
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: rust
name=bandwhich
2023-09-20 17:24:35 +02:00
version=0.21.0
release=1
2023-09-20 17:24:35 +02:00
source=(https://github.com/imsnif/bandwhich/archive/v$version/$name-$version.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cargo build --release --manifest-path $name-$version/Cargo.toml
install -Dt $PKG/usr/bin $name-$version/target/release/$name
install -Dm 755 $SRC/$name-$version/docs/bandwhich.1 $PKG/usr/share/man/man1/bandwhich.1
}