22 lines
714 B
Plaintext
22 lines
714 B
Plaintext
# Description: Terminal bandwidth utilization tool
|
|
# URL: https://github.com/imsnif/bandwhich
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: rust
|
|
|
|
name=bandwhich
|
|
version=0.22.2
|
|
release=1
|
|
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
|
|
find $name-$version/target/release/ -iname "bandwhich.1" \
|
|
-exec install -Dm755 {} $PKG/usr/share/man/man1/bandwhich.1 \;
|
|
}
|