aboutsummaryrefslogtreecommitdiffstats
path: root/community/postgresql-bdr-extension0.9/APKBUILD
blob: 85a6ef9a2ca77d15de6d4578c6fb1f404252c47e (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
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=postgresql-bdr-extension0.9
pkgver=0.9.3
pkgrel=3
pkgdesc="PostgreSQL bidirectional replication (BDR) extension"
url="https://wiki.postgresql.org/wiki/BDR_Administration"
arch="all"
license="GPL"
makedepends="$depends_dev postgresql-bdr-dev"
subpackages="$pkgname-doc"
#FIXME: mkdir: can't create directory 'tmp_check/data': File exists
options="!check"
source="http://packages.2ndquadrant.com/postgresql-bdr94-2ndquadrant/tarballs/bdr-$pkgver.tar.bz2"
builddir="$srcdir"/bdr-$pkgver

build() {
	cd "$builddir"
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info \
		--enable-bdr \
		|| return 1
	make || return 1
}

check() {
	cd "$builddir"
	make DESTDIR="$pkgdir" check
}

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

sha512sums="8a129ecd45d69d056d750c043481aad000403e241a7fa89bfde7a758baf6262491a8727b21ea9454d4f989404fd2acb45cd6aa0758e4eaf5fa94c9a73f8c16c2  bdr-0.9.3.tar.bz2"