mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 02:44:37 +08:00
32 lines
928 B
Bash
32 lines
928 B
Bash
|
# $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
|
||
|
}
|