diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/apr-util/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/apr-util/PKGBUILD')
-rw-r--r-- | extra/apr-util/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/apr-util/PKGBUILD b/extra/apr-util/PKGBUILD new file mode 100644 index 000000000..2ea584661 --- /dev/null +++ b/extra/apr-util/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 96364 2010-10-20 01:39:57Z allan $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Maintainer: Pierre Schmitz <pierre@archlinux.de> + +pkgname=apr-util +pkgver=1.3.10 +pkgrel=2 +pkgdesc="The Apache Portable Runtime" +arch=('i686' 'x86_64') +url="http://apr.apache.org/" +depends=('apr>=1.4.2' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc') +options=('!libtool') +license=('APACHE') +source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2") +md5sums=('6a6f501a1b2a45166b8ffd6df29204bb') + +build() { + cd "${srcdir}/apr-util-${pkgver}" + + ./configure --prefix=/usr --with-apr=/usr \ + --without-pgsql --without-mysql --without-sqlite2 --without-sqlite3 \ + --with-berkeley-db=/usr --with-gdbm=/usr --with-ldap + make + make DESTDIR="${pkgdir}" install +} |