mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-17 02:26:34 +02:00
27 lines
862 B
Plaintext
27 lines
862 B
Plaintext
# Contributor: Guy Godfroy <guy.godfroy@gugod.fr>
|
|
# Maintainer: Guy Godfroy <guy.godfroy@gugod.fr>
|
|
pkgname=git-quick-stats
|
|
pkgver=2.11.0
|
|
pkgrel=0
|
|
pkgdesc="Access various statistics in git repository"
|
|
url="https://git-quick-stats.sh"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="bash git util-linux ncurses coreutils"
|
|
subpackages="$pkgname-doc"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/arzzen/git-quick-stats/archive/refs/tags/$pkgver.tar.gz"
|
|
|
|
check() {
|
|
export TERM=xterm-256color # without that it fails in ci/cd
|
|
bash tests/commands_test.sh
|
|
}
|
|
|
|
package() {
|
|
install -Dm0755 git-quick-stats -t "$pkgdir"/usr/bin/
|
|
install -Dm0644 git-quick-stats.1 -t "$pkgdir"/usr/share/man/man1/
|
|
}
|
|
|
|
sha512sums="
|
|
3c70e96635e6a915ee2f679eb70e762ce8d8a7d5f6432c3561fd4eb24b6950c03784eb4e369852d3442a1f2c3a50e2d85af8d8eb3ab26f3085adbee1c5b532c6 git-quick-stats-2.11.0.tar.gz
|
|
"
|