1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Your Name <youremail@domain.com>
11 pkgdesc="PgBouncer is a lightweight connection pooler for PostgreSQL."
12 arch=('i686' 'x86_64')
13 url="http://pgfoundry.org/projects/pgbouncer"
16 depends=('libevent>=2.0' 'postgresql>=7.4')
27 source=("http://pgfoundry.org/frs/download.php/3085/${pkgname}-${pkgver}.tgz")
29 md5sums=('5083110b5b4f2127234bfc7b1f451f8d')
32 cd "$srcdir/$pkgname-$pkgver"
33 ./configure --prefix=/usr --with-libevent=/usr/lib --disable-debug
38 # cd "$srcdir/$pkgname-$pkgver"
43 cd "$srcdir/$pkgname-$pkgver"
44 make DESTDIR="$pkgdir/" install
47 # vim:set ts=2 sw=2 et: