mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 06:32:36 +01:00
30 lines
833 B
Plaintext
30 lines
833 B
Plaintext
# Contributor: Cameron <cbanta@gmail.com>
|
|
# Maintainer: Cameron <cbanta@gmail.com>
|
|
pkgname=pgpool
|
|
_opkgname=pgpool-II
|
|
pkgver=2.2.2
|
|
pkgrel=2
|
|
pkgdesc="Pgpool II is a connection pooling/replication server for PostgreSQL."
|
|
url="http://pgfoundry.org/projects/pgpool/"
|
|
license="BSD"
|
|
makedepends="postgresql-dev"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
source="http://pgfoundry.org/frs/download.php/2191/$_opkgname-$pkgver.tar.gz
|
|
$pkgname.initd"
|
|
|
|
build() {
|
|
cd "$srcdir/$_opkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
|
|
}
|
|
|
|
md5sums="6f14514ed4ed5368ad3ab7e2d4c5136b pgpool-II-2.2.2.tar.gz
|
|
6317aee51feaf9c5facb7765cddeec6b pgpool.initd"
|