2020-11-19 08:44:28 +00:00
|
|
|
# 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.9.0
|
|
|
|
release=1
|
|
|
|
source=(https://github.com/ogham/exa/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"
|
|
|
|
|
2021-02-20 14:53:06 +00:00
|
|
|
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
|
2020-11-19 08:44:28 +00:00
|
|
|
|
|
|
|
# install auto-completion files if the ports for it are installed
|
2021-02-20 14:53:06 +00:00
|
|
|
if [ -e /usr/bin/zsh ]; then
|
|
|
|
install -Dm644 $name-$version/contrib/completions.zsh \
|
2020-11-19 08:44:28 +00:00
|
|
|
$PKG/usr/share/zsh/site-functions/_$name
|
|
|
|
fi
|
|
|
|
if [ -e /usr/lib/pkgconfig/bash-completion.pc ]; then
|
2021-02-20 14:53:06 +00:00
|
|
|
install -Dm644 $name-$version/contrib/completions.bash \
|
2020-11-19 08:44:28 +00:00
|
|
|
$PKG/usr/share/bash-completion/completions/$name
|
|
|
|
fi
|
|
|
|
}
|