mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-03 07:42:10 +01:00
66 lines
1.9 KiB
Plaintext
66 lines
1.9 KiB
Plaintext
# Contributor: Orhun Parmaksız <orhunparmaksiz@gmail.com>
|
||
# Maintainer: Orhun Parmaksız <orhunparmaksiz@gmail.com>
|
||
pkgname=git-cliff
|
||
pkgver=1.4.0
|
||
pkgrel=0
|
||
pkgdesc="A highly customizable changelog generator"
|
||
url="https://github.com/orhun/git-cliff"
|
||
# s390x, ppc64le, riscv64: blocked by ring crate
|
||
arch="all !s390x !ppc64le !riscv64"
|
||
license="MIT OR Apache-2.0"
|
||
makedepends="
|
||
cargo
|
||
cargo-auditable
|
||
libgit2-dev
|
||
"
|
||
subpackages="
|
||
$pkgname-doc
|
||
$pkgname-bash-completion
|
||
$pkgname-zsh-completion
|
||
$pkgname-fish-completion
|
||
"
|
||
options="net"
|
||
source="$pkgname-$pkgver.tar.gz::https://github.com/orhun/git-cliff/archive/v$pkgver.tar.gz"
|
||
|
||
prepare() {
|
||
default_prepare
|
||
|
||
# Rust target triple.
|
||
local target=$(rustc -vV | sed -n 's/host: //p')
|
||
|
||
# Build against system-provided libs
|
||
mkdir -p .cargo
|
||
cat >> .cargo/config.toml <<-EOF
|
||
[target.$target]
|
||
git2 = { rustc-link-lib = ["git2"] }
|
||
EOF
|
||
|
||
cargo fetch --target="$CTARGET" --locked
|
||
}
|
||
|
||
build() {
|
||
cargo auditable build --frozen --release
|
||
mkdir -p man
|
||
OUT_DIR=man/ "./target/release/$pkgname-mangen"
|
||
mkdir -p completions
|
||
OUT_DIR=completions/ "./target/release/$pkgname-completions"
|
||
}
|
||
|
||
check() {
|
||
cargo test --frozen -- --skip "git_log" --skip "git_tags"
|
||
}
|
||
|
||
package() {
|
||
install -Dm 755 "target/release/$pkgname" -t "$pkgdir/usr/bin"
|
||
install -Dm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
|
||
install -Dm 644 LICENSE-MIT -t "$pkgdir/usr/share/licenses/$pkgname"
|
||
install -Dm 644 "man/$pkgname.1" -t "$pkgdir/usr/share/man/man1"
|
||
install -Dm 644 "completions/$pkgname.bash" "$pkgdir/usr/share/bash-completion/completions/$pkgname"
|
||
install -Dm 644 "completions/$pkgname.fish" -t "$pkgdir/usr/share/fish/vendor_completions.d"
|
||
install -Dm 644 "completions/_$pkgname" -t "$pkgdir/usr/share/zsh/site-functions"
|
||
}
|
||
|
||
sha512sums="
|
||
4fa7ff2ea9cb2656b5d7f81db30112600058f08ed8605890f24d53238b6467d754cb9068424e2946f7e40ebf65acb7e74a90af26d6503fa8f104de3fcbca560c git-cliff-1.4.0.tar.gz
|
||
"
|