42 lines
1.2 KiB
Bash
42 lines
1.2 KiB
Bash
# Template file for 'git-cliff'
|
|
pkgname=git-cliff
|
|
version=2.0.2
|
|
revision=1
|
|
archs="x86_64* i686* aarch64* arm*" # ring
|
|
build_style=cargo
|
|
build_helper=qemu
|
|
make_install_args="--path git-cliff"
|
|
# These tests fail without a git repo
|
|
make_check_args="--
|
|
--skip repo::test::git_log
|
|
--skip repo::test::git_tags
|
|
--skip repo::test::git_upstream_remote"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libgit2-devel"
|
|
short_desc="Changelog generator based on conventional commits"
|
|
maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
|
|
license="Apache-2.0, MIT"
|
|
homepage="https://github.com/orhun/git-cliff"
|
|
changelog="https://raw.githubusercontent.com/orhun/git-cliff/main/CHANGELOG.md"
|
|
distfiles="https://github.com/orhun/git-cliff/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=ab29fbda532bec2a344d99f39b7998063c576efee92a1bee083c6fba5f52e4ef
|
|
|
|
post_patch() {
|
|
cargo update --package git2@0.18.2 --precise 0.17.2
|
|
}
|
|
|
|
post_install() {
|
|
vdoc README.md
|
|
|
|
OUT_DIR=${PWD} vtargetrun ${DESTDIR}/usr/bin/git-cliff-completions
|
|
|
|
vcompletion "_git-cliff" zsh
|
|
vcompletion "git-cliff.fish" fish
|
|
vcompletion "git-cliff.bash" bash
|
|
|
|
OUT_DIR=${PWD} vtargetrun ${DESTDIR}/usr/bin/git-cliff-mangen
|
|
vman git-cliff.1
|
|
|
|
vlicense LICENSE-MIT
|
|
}
|