1 # Contributor: Daniele Paolella <dp@hostess-promoter.com>
5 pkgdesc="The Apache Portable Runtime with MySQL support"
7 url="http://apr.apache.org/"
8 depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc')
11 provides=("apr-util==$pkgver")
12 conflicts=('apr-util')
14 source=("http://www.apache.org/dist/apr/apr-util-$pkgver.tar.bz2")
15 md5sums=('0f671b037ca62751a8a7005578085560')
18 cd "$srcdir/apr-util-$pkgver"
19 ./configure --prefix=/usr --with-apr=/usr \
20 --without-pgsql --with-mysql --without-sqlite2 --without-sqlite3 \
21 --with-berkeley-db=/usr --with-gdbm=/usr --with-ldap
26 cd "$srcdir/apr-util-$pkgver"
27 make DESTDIR="$pkgdir/" install
30 # vim:set ts=2 sw=2 et: