summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b40692a617e686ecc0b76365aa435ae184d13cb6 (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
# Maintainer: joho1001 (Josef Hopfgartner) <josef at netzagentur dot at>
pkgname=pg_partman-git
_gitname=pg_partman
pkgver=61026e7
pkgrel=1
pkgdesc="postgresql partition manager background worker"
arch=('i686' 'x86_64' 'armv7h' 'aarch64')
url="https://github.com/keithf4/pg_partman"
license=('BSD')
depends=('postgresql')
builddepends=()
makedepends=(git)
options=(!emptydirs !libtool)
source=('git://github.com/keithf4/pg_partman.git')
md5sums=('SKIP')
install='pg_partman-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
}