30 lines
935 B
Plaintext
30 lines
935 B
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
|
|
# Optional: libgit2
|
|
|
|
name=exa
|
|
version=0.10.1
|
|
release=3
|
|
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
|
|
[[ ! -e $PKGMK_SOURCE_DIR/rust ]] && mkdir $PKGMK_SOURCE_DIR/rust
|
|
|
|
patch -Np1 -d $name-$version -i $SRC/1051.patch
|
|
|
|
cargo build --release --manifest-path $name-$version/Cargo.toml
|
|
|
|
prt-get isinst bash-completion && \
|
|
install -Dm644 $name-$version/completions/completions.bash \
|
|
$PKG/usr/share/bash-completion/completions/$name
|
|
prt-get isinst zsh && \
|
|
install -Dm644 $name-$version/completions/completions.zsh \
|
|
$PKG/usr/share/zsh/site-functions/_$name
|
|
|
|
install -Dt $PKG/usr/bin $name-$version/target/release/$name
|
|
}
|