33 lines
1000 B
Bash
33 lines
1000 B
Bash
# Template file for 'jujutsu'
|
|
pkgname=jujutsu
|
|
version=0.27.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 git"
|
|
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=a9d2ab04698f971a215ae2510082d0bc00540188deb90d48e12e86a6d6a023af
|
|
conflicts="jj>=0"
|
|
|
|
do_install() {
|
|
for f in target/*/release/jj; do
|
|
vbin $f
|
|
done
|
|
|
|
vtargetrun ${DESTDIR}/usr/bin/jj util install-man-pages ${DESTDIR}/usr/share/man
|
|
|
|
for _shell in bash fish zsh; do
|
|
COMPLETE=${_shell} vtargetrun ${DESTDIR}/usr/bin/jj > jj.${_shell}
|
|
sed -i -e "s:$DESTDIR::g" jj.${_shell}
|
|
vcompletion jj.${_shell} ${_shell} jj
|
|
done
|
|
}
|