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/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/apr/PKGBUILD')
-rw-r--r-- | extra/apr/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/apr/PKGBUILD b/extra/apr/PKGBUILD new file mode 100644 index 000000000..b0d3f4d96 --- /dev/null +++ b/extra/apr/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 72235 2010-03-13 20:22:25Z jgc $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +# Contributor: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=apr +pkgver=1.4.2 +pkgrel=1 +pkgdesc="The Apache Portable Runtime" +arch=('i686' 'x86_64') +url="http://apr.apache.org/" +depends=('util-linux-ng>=2.16') +options=('!libtool') +license=('APACHE') +source=(http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2) +md5sums=('4b00e8f70c067893d075577962656b35') + +build() { + cd "${srcdir}/apr-${pkgver}" + export apr_cv_epoll_create1=no + export apr_cv_dup3=no + export apr_cv_accept4=no + export apr_cv_sock_cloexec=no + + ./configure --prefix=/usr --includedir=/usr/include/apr-1 \ + --with-installbuilddir=/usr/share/apr-1/build \ + --enable-nonportable-atomics \ + --with-devrandom=/dev/urandom || return 1 + make || return 1 + make DESTDIR="${pkgdir}" install || return 1 +} |