contrib/delta/Pkgfile

32 lines
950 B
Plaintext

# Description: A viewer for git and diff output
# URL: https://github.com/dandavison/delta
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: rust
name=delta
version=0.5.1
release=1
source=(https://github.com/dandavison/delta/archive/$version/$name-$version.tar.gz)
build() {
cd $name-$version
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
cargo update
cargo fetch
cargo build --release --locked
install -Dt $PKG/usr/bin target/release/delta
# install auto-completion files if the ports for it are installed
if [ -e /usr/share/zsh ]; then
install -Dm644 etc/completion/completion.zsh \
$PKG/usr/share/zsh/site-functions/_delta
fi
if [ -e /usr/lib/pkgconfig/bash-completion.pc ]; then
install -Dm644 etc/completion/completion.bash \
$PKG/usr/share/bash-completion/completions/delta
fi
}