4 pkgdesc="The Apache Portable Runtime with dbd support"
6 url="http://apr.apache.org/"
8 depends=('apr' 'expat' 'db' 'unixodbc' 'postgresql-libs' 'libmysqlclient' 'gdbm' 'libldap' 'sqlite3')
9 provides=("apr-util==${pkgver}")
10 conflicts=('apr-util')
12 source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2")
13 md5sums=('0f671b037ca62751a8a7005578085560')
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
21 make DESTDIR=${pkgdir} install