contrib/exa/Pkgfile

30 lines
935 B
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
2023-02-25 19:57:47 +01:00
# Optional: libgit2
2020-11-19 09:44:28 +01:00
name=exa
2021-04-13 07:57:04 +02:00
version=0.10.1
2023-02-25 20:27:10 +01:00
release=3
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
2023-02-25 19:57:47 +01:00
[[ ! -e $PKGMK_SOURCE_DIR/rust ]] && mkdir $PKGMK_SOURCE_DIR/rust
2020-11-19 09:44:28 +01:00
patch -Np1 -d $name-$version -i $SRC/1051.patch
2023-02-25 19:57:47 +01:00
cargo build --release --manifest-path $name-$version/Cargo.toml
2020-11-19 09:44:28 +01:00
2023-02-25 19:57:47 +01:00
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
2020-11-19 09:44:28 +01:00
}