PKGBUILDs/extra/apr/PKGBUILD

26 lines
664 B
Bash
Raw Normal View History

2009-09-26 14:35:50 +00:00
# ARM Maintaner: Krzysztof Warzecha <kwarzecha7@gmail.com>
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
pkgname=apr
pkgver=1.3.8
pkgrel=1
pkgdesc="The Apache Portable Runtime"
arch=('arm')
url="http://apr.apache.org/"
depends=('e2fsprogs')
options=('!libtool')
license=('APACHE')
source=("http://www.apache.org/dist/apr/apr-${pkgver}.tar.bz2")
md5sums=('3c7e3a39ae3d3573f49cb74e2dbf87a2')
build() {
cd ${srcdir}/apr-${pkgver}
./configure --prefix=/usr --includedir=/usr/include/apr-1 \
--with-installbuilddir=/usr/share/apr-1/build \
--enable-nonportable-atomics \
--with-devrandom=/dev/urandom
make || return 1
make DESTDIR=${pkgdir} install
}