diff options
author | root <root@rshg047.dnsready.net> | 2011-06-28 23:10:22 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-06-28 23:10:22 +0000 |
commit | 108636e69eaeef67f4e7263c7f26105e25979e89 (patch) | |
tree | 94f902b30c95dbddd8f514c4d3645700f80ed101 /staging/apr-util | |
parent | 0a595245dd258cc0ad9a5de2b292cf1b1a94f51a (diff) |
Tue Jun 28 23:10:22 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..5cdab4d99 --- /dev/null +++ b/staging/apr-util/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 129453 2011-06-28 01:17:42Z stephane $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Maintainer: Pierre Schmitz <pierre@archlinux.de> + +pkgname=apr-util +pkgver=1.3.12 +pkgrel=2 +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 +} |