summaryrefslogtreecommitdiff
path: root/extra/apr-util/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'extra/apr-util/PKGBUILD')
-rw-r--r--extra/apr-util/PKGBUILD25
1 files changed, 19 insertions, 6 deletions
diff --git a/extra/apr-util/PKGBUILD b/extra/apr-util/PKGBUILD
index 0655e18b7..768bd9e6d 100644
--- a/extra/apr-util/PKGBUILD
+++ b/extra/apr-util/PKGBUILD
@@ -1,14 +1,26 @@
-# $Id: PKGBUILD 207989 2014-03-16 19:05:38Z anatolik $
+# $Id: PKGBUILD 209701 2014-04-01 14:35:11Z anatolik $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
pkgname=apr-util
pkgver=1.5.3
-pkgrel=3
+pkgrel=4
pkgdesc="The Apache Portable Runtime"
arch=('i686' 'x86_64')
url="http://apr.apache.org/"
-depends=('apr' 'gdbm' 'expat' 'libldap' 'unixodbc' 'openssl')
+depends=('apr' 'expat')
+makedepends=('gdbm' 'libldap' 'unixodbc' 'openssl' 'nss' 'sqlite' 'libmariadbclient' 'db' 'postgresql-client')
+optdepends=(
+ 'gdbm: enable gdbm support'
+ 'libldap: enable ldap support'
+ 'unixodbc: enable odbc support'
+ 'libmariadbclient: enable mysql/mariadb support'
+ 'postgresql-client: enable postgres support'
+ 'db: enable berkley db support'
+ 'sqlite: enable sqlite support'
+ 'nss: enable nss crypto support'
+ 'openssl: enable openssl crypto suppot'
+)
license=('APACHE')
source=(http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2{,.asc})
md5sums=('6f3417691c7a27090f36e7cf4d94b36e'
@@ -16,9 +28,10 @@ md5sums=('6f3417691c7a27090f36e7cf4d94b36e'
build() {
cd "${srcdir}/apr-util-${pkgver}"
- ./configure --prefix=/usr --with-apr=/usr \
- --with-ldap --with-crypto \
- --with-gdbm=/usr
+ ./configure --prefix=/usr --with-apr=/usr --with-ldap --with-crypto \
+ --with-gdbm=/usr --with-sqlite3=/usr --with-nss=/usr --with-odbc=/usr \
+ --with-berkeley-db=/usr --with-pgsql=/usr --with-mysql=/usr --with-oracle=/usr \
+ --with-openssl=/usr
make
}