30 lines
879 B
Bash
30 lines
879 B
Bash
# Template file for 'jujutsu'
|
|
pkgname=jujutsu
|
|
version=0.21.0
|
|
revision=1
|
|
build_style=cargo
|
|
build_helper=qemu
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libgit2-1.8-devel openssl-devel libzstd-devel"
|
|
depends="openssh"
|
|
checkdepends="openssh"
|
|
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"
|
|
checksum=c38d98d7db42f08b799f5c51f33cd8454867bc4862a15aa0897b72f2d32eea0a
|
|
conflicts="jj>=0"
|
|
|
|
do_install() {
|
|
for f in target/*/release/jj; do
|
|
vbin $f
|
|
done
|
|
|
|
for _shell in bash fish zsh; do
|
|
vtargetrun ${DESTDIR}/usr/bin/jj util completion ${_shell} > jj.${_shell}
|
|
vcompletion jj.${_shell} ${_shell} jj
|
|
done
|
|
}
|