20 lines
603 B
Plaintext
20 lines
603 B
Plaintext
# Description: View disk space usage and delete unwanted data, fast.
|
|
# URL: https://github.com/Byron/dua-cli
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: rust
|
|
|
|
name=dua-cli
|
|
version=2.29.0
|
|
release=1
|
|
source=(https://github.com/Byron/dua-cli/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 --locked --manifest-path $name-$version/Cargo.toml
|
|
|
|
install -Dt $PKG/usr/bin $name-$version/target/release/dua
|
|
}
|