diff options
author | root <root@rshg054.dnsready.net> | 2011-12-18 23:14:50 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-18 23:14:50 +0000 |
commit | d8fd24a96ae712b2de3e9b05d937b135f41d016d (patch) | |
tree | d7720f7ed4640d7aff2d5c472aeabcfad87df24f /staging/apr-util | |
parent | 146025aa1c838c12fa7b4873414da73816bfb6bd (diff) |
Sun Dec 18 23:14:50 UTC 2011
Diffstat (limited to 'staging/apr-util')
-rw-r--r-- | staging/apr-util/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/staging/apr-util/PKGBUILD b/staging/apr-util/PKGBUILD new file mode 100644 index 000000000..3f144c339 --- /dev/null +++ b/staging/apr-util/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 145150 2011-12-18 04:37:39Z andrea $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Maintainer: Pierre Schmitz <pierre@archlinux.de> + +pkgname=apr-util +pkgver=1.3.12 +pkgrel=4 +pkgdesc="The Apache Portable Runtime" +arch=('i686' 'x86_64') +url="http://apr.apache.org/" +depends=('apr' 'gdbm' 'expat' 'db' 'libldap' 'unixodbc') +options=('!libtool') +license=('APACHE') +source=("http://www.apache.org/dist/apr/apr-util-${pkgver}.tar.bz2") +md5sums=('0f671b037ca62751a8a7005578085560') + +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 +} + +package() { + cd "${srcdir}/apr-util-${pkgver}" + make DESTDIR="${pkgdir}" install +} |