forked from ports/contrib
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
# Description: exa is a modern replacement for ls written in rust
|
|
# URL: https://the.exa.website/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: rust
|
|
|
|
name=exa
|
|
version=0.10.1
|
|
release=2
|
|
source=(https://github.com/ogham/exa/archive/v$version/$name-$version.tar.gz
|
|
1051.patch)
|
|
|
|
build() {
|
|
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
|
|
mkdir "$PKGMK_SOURCE_DIR/rust" || true
|
|
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
|
|
|
|
patch -Np1 -d $name-$version -i $SRC/1051.patch
|
|
|
|
cargo update --manifest-path $name-$version/Cargo.toml
|
|
cargo fetch --manifest-path $name-$version/Cargo.toml
|
|
cargo build --release --locked --manifest-path $name-$version/Cargo.toml
|
|
install -Dt $PKG/usr/bin $name-$version/target/release/exa
|
|
|
|
prt-get isinst bash-completion && install -Dm644 $name-$version/completions/completions.bash \
|
|
$PKG/usr/share/bash-completion/completions/$name || true
|
|
prt-get isinst zsh && install -Dm644 $name-$version/completions/completions.zsh \
|
|
$PKG/usr/share/zsh/site-functions/_$name || true
|
|
}
|