blob: 7b5313ec9ad97330b60e2ee1095c5fbecaeab16a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Maintainer: Kevin Kuehler <keur@xcf.berkeley.edu>
pkgname='git-quick-stats'
pkgver='2.4.1'
pkgrel=1
pkgdesc='`git-quick-stats` is a simple and efficient way to access various statistics in git repository.'
arch=('x86_64')
url="https://github.com/arzzen/$pkgname"
license=('MIT')
depends=(
'bash'
'coreutils'
'gawk'
'git'
'grep'
'ncurses'
'util-linux'
)
makedepends=()
provides=('git-quick-stats')
conflicts=('git-quick-stats')
source=("$pkgname::git+$url#tag=$pkgver")
sha256sums=('SKIP')
check() {
cd "$srcdir/$pkgname"
make test
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir" PREFIX=/usr install
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
|