summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 6635da57adcb832d24c28407f7414f6a4559e9ad (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
35
36
37
38
39
# Maintainer: Marco44 (Marc Cousin) <cousinmarc at gmail dot com>
pkgname=powa-archivist-git
_gitname=powa-archivist
pkgver=5182d7b
pkgrel=1
pkgdesc="postgresql background worker to capture data"
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://github.com/powa-team/powa-archivist"
license=('BSD')
depends=('postgresql')
optdepends=('pg_qualstats-git: capture predicate statistics in PostgreSQL'
           'pg_stat_kcache-git: capture system cache hit ratio in PostgreSQL'
	   'hypopg-git: create hypothetical indexes in PostgreSQL to test for plan changes')
builddepends=()
makedepends=(git)
options=(!emptydirs !libtool)
source=('git://github.com/powa-team/powa-archivist.git')
md5sums=('SKIP')
install='powa-archivist-git.install'

pkgver() {
  cd $_gitname
  tag=`git tag | grep REL | tail -1`
  commit=`git log --format="%h" -n 1`
  echo "$tag_$commit"
}

build() {
  local _gitdir=$srcdir/$_gitname
  cd $_gitdir
  git clean -dfx
  git reset --hard
  make
}

package() {
  cd $srcdir/$_gitname
  make DESTDIR=$pkgdir install
}