summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6da8215bc85cb986285218709770fa4211965daa (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
# Maintainer: Jeff 'codemac' Mickey <jeff@archlinux.org>;

pkgname=ministat-git
pkgver=20120914
pkgrel=1
pkgdesc="A small tool to do the statistics legwork on benchmarks etc."
arch=('i686' 'x86_64')
url="http://github.com/codemac/ministat"
license=('custom')
depends=('glibc')
makedepends=('git')
provides=('ministat')
conflicts=('ministat')
source=('git+https://github.com/codemac/ministat.git')
md5sums=('SKIP')

pkgver() {
  cd ministat
  git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//'
}


build() {
  cd ministat
  make
}

package() {
  cd ministat
  make DESTDIR="$pkgdir" install
}