updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / apr-util-dbd / PKGBUILD
blobcb20b37165c83b083bcd8df6d97f70eac30bfd4c
1 pkgname=apr-util-dbd
2 pkgver=1.3.12
3 pkgrel=1
4 pkgdesc="The Apache Portable Runtime with dbd support"
5 arch=('i686' 'x86_64')
6 url="http://apr.apache.org/"
7 license=('APACHE')
8 depends=('apr' 'expat' 'db' 'unixodbc' 'postgresql-libs' 'libmysqlclient' 'gdbm' 'libldap' 'sqlite3')
9 provides=("apr-util==${pkgver}")
10 conflicts=('apr-util')
11 options=('!libtool')
12 source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
13 md5sums=('0f671b037ca62751a8a7005578085560')
15 build() {
16         cd ${srcdir}/apr-util-${pkgver}
17         ./configure --prefix=/usr --with-apr=/usr \
18         --with-pgsql --with-mysql --with-sqlite2 --with-sqlite3 \
19         --with-berkeley-db --with-gdbm --with-ldap
20         make || return 1
21         make DESTDIR=${pkgdir} install