void-packages/srcpkgs/jujutsu/template

34 lines
1009 B
Bash
Raw Normal View History

2024-02-05 15:25:01 +01:00
# Template file for 'jujutsu'
pkgname=jujutsu
2024-02-09 00:58:56 +01:00
version=0.14.0
2024-02-05 15:25:01 +01:00
revision=1
build_style=cargo
build_helper=qemu
hostmakedepends="pkg-config"
makedepends="libgit2-devel openssl-devel libzstd-devel"
short_desc="Git-compatible VCS that is both simple and powerful"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="Apache-2.0"
homepage="https://github.com/martinvonz/jj"
changelog="https://github.com/martinvonz/jj/blob/main/CHANGELOG.md"
distfiles="https://github.com/martinvonz/jj/archive/refs/tags/v${version}.tar.gz"
2024-02-09 00:58:56 +01:00
checksum=33bea9014f53db520d2983830f3da75b7124c44a16b75850a1dd781355aeff5b
2024-02-05 15:25:01 +01:00
conflicts="jj>=0"
pre_configure() {
# Downgrade to use Void system libgit2 1.6
2024-02-09 00:58:56 +01:00
vsed -i 's/git2 = "0.18.2"/git2 = "0.17.2"/' Cargo.toml
cargo update --package git2@0.18.2 --precise 0.17.2
2024-02-05 15:25:01 +01:00
}
do_install() {
for f in target/*/release/jj; do
vbin $f
done
for _shell in bash fish zsh; do
2024-02-09 00:58:56 +01:00
vtargetrun ${DESTDIR}/usr/bin/jj util completion ${_shell} > jj.${_shell}
2024-02-05 15:25:01 +01:00
vcompletion jj.${_shell} ${_shell} jj
done
}