contrib/exa/Pkgfile

29 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-11-19 09:44:28 +01: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
2021-04-13 07:57:04 +02:00
version=0.10.1
release=2
source=(https://github.com/ogham/exa/archive/v$version/$name-$version.tar.gz
1051.patch)
2020-11-19 09:44:28 +01:00
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
2021-02-20 15:53:06 +01: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 09:44:28 +01:00
2021-04-10 10:38:58 +02:00
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
2020-11-19 09:44:28 +01:00
}